From be3937fc7edb33fb66148f0ece5896e7e3a14e8d Mon Sep 17 00:00:00 2001 From: Julien Wadel Date: Tue, 17 Jan 2023 17:20:53 +0100 Subject: [PATCH] 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 --- CHANGELOG.md | 6 ++++++ linphone-app/src/app/cli/Cli.cpp | 3 +-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f348a7433..c913ffe0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/linphone-app/src/app/cli/Cli.cpp b/linphone-app/src/app/cli/Cli.cpp index 2eb13b7d8..e420d9d08 100644 --- a/linphone-app/src/app/cli/Cli.cpp +++ b/linphone-app/src/app/cli/Cli.cpp @@ -355,8 +355,7 @@ void Cli::Command::executeUri (const shared_ptr &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); }