mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
Use default values for new accounts in settings panel.
Add 'sip' scheme in authentication popup.
This commit is contained in:
parent
43d73f8e2f
commit
5b533ebb99
3 changed files with 7 additions and 2 deletions
|
|
@ -21,6 +21,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
### Fixes
|
||||
- Update SDK to fix a crash on startup due to a test on a removed participant device.
|
||||
- Use default values for new accounts in settings panel.
|
||||
|
||||
### Added
|
||||
- Add 'sip' scheme in authentication popup.
|
||||
|
||||
## 4.4.8 - 2022-07-05
|
||||
|
||||
### Fixes
|
||||
|
|
|
|||
|
|
@ -133,7 +133,7 @@ function handleAuthenticationRequested (authInfo, realm, sipAddress, userId) {
|
|||
window.attachVirtualWindow(Qt.resolvedUrl('Dialogs/AuthenticationRequest.qml'), {
|
||||
authInfo: authInfo,
|
||||
realm: realm,
|
||||
sipAddress: sipAddress,
|
||||
sipAddress: 'sip:'+sipAddress,
|
||||
userId: userId,
|
||||
virtualWindowHash:Qt.md5('Dialogs/AuthenticationRequest.qml'+realm+sipAddress+userId)
|
||||
})
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ function initForm (account) {
|
|||
|
||||
proxyConfig = account
|
||||
? account.proxyConfig
|
||||
: AccountSettingsModel.createProxyConfig()
|
||||
: AccountSettingsModel.createProxyConfig('create-app-sip-account.rc')
|
||||
|
||||
var config = AccountSettingsModel.getProxyConfigDescription(proxyConfig)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue