mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-25 15:58:16 +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)
# Conflicts: # CHANGELOG.md
This commit is contained in:
parent
1d050ef1ae
commit
be3937fc7e
2 changed files with 7 additions and 2 deletions
|
|
@ -4,12 +4,18 @@ 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.1.0 - undefined
|
||||
|
||||
### Added
|
||||
- VFS Encryption
|
||||
- File viewer in chats (Image/Animated Image/Video/Texts) with the option to export the file.
|
||||
|
||||
## 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