mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-03 04:39:24 +00:00
Avoid to strip URI in sip address on URI handlers to call the exact address (eg. keep conf-id for calling a conference)
This commit is contained in:
parent
aa660534ba
commit
115fcb3122
2 changed files with 6 additions and 2 deletions
|
|
@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
|
|||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## 5.0.6 - 2023-01-10
|
||||
|
||||
### Fixed
|
||||
- URI Handlers to a conference
|
||||
|
||||
## 5.0.5 - 2023-01-09
|
||||
|
||||
### Fixed
|
||||
|
|
|
|||
|
|
@ -355,8 +355,7 @@ void Cli::Command::executeUri (const shared_ptr<linphone::Address> &address) con
|
|||
const string header = address->getHeader(Utils::appStringToCoreString(argName));
|
||||
args[argName] = QByteArray::fromBase64(QByteArray(header.c_str(), int(header.length())));
|
||||
}
|
||||
address->clean();
|
||||
args["sip-address"] = Utils::coreStringToAppString(address->asStringUriOnly());
|
||||
args["sip-address"] = Utils::coreStringToAppString(address->asString());
|
||||
execute(args);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue