mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 19:38:08 +00:00
[sendLog] linphonerc updated for server transfert
This commit is contained in:
parent
5571674191
commit
af3c8514ca
5 changed files with 11 additions and 5 deletions
|
|
@ -18,3 +18,7 @@ push_notification=1
|
|||
[tunnel]
|
||||
host=
|
||||
port=443
|
||||
|
||||
[misc]
|
||||
log_collection_upload_server_url=https://www.linphone.org:444/lft.php
|
||||
file_transfer_server_url=https://www.linphone.org:444/lft.php
|
||||
|
|
@ -12,10 +12,13 @@ keepalive_period=30000
|
|||
size=qvga
|
||||
|
||||
[app]
|
||||
sharing_server=https://www.linphone.org:444/lft.php
|
||||
tunnel=disabled
|
||||
push_notification=1
|
||||
|
||||
[tunnel]
|
||||
host=
|
||||
port=443
|
||||
|
||||
[misc]
|
||||
log_collection_upload_server_url=https://www.linphone.org:444/lft.php
|
||||
file_transfer_server_url=https://www.linphone.org:444/lft.php
|
||||
|
|
@ -39,4 +39,4 @@ ec_calibrator_cool_tones=1
|
|||
|
||||
|
||||
[misc]
|
||||
max_calls=10
|
||||
max_calls=10
|
||||
|
|
|
|||
|
|
@ -721,7 +721,6 @@ public class LinphoneManager implements LinphoneCoreListener, LinphoneChatMessag
|
|||
}
|
||||
|
||||
resetCameraFromPreferences();
|
||||
mLc.setFileTransferServer(LinphonePreferences.instance().getSharingPictureServerUrl());
|
||||
}
|
||||
|
||||
private void copyAssetsFromPackage() throws IOException {
|
||||
|
|
|
|||
|
|
@ -1039,11 +1039,11 @@ public class LinphonePreferences {
|
|||
}
|
||||
|
||||
public String getSharingPictureServerUrl() {
|
||||
return getConfig().getString("app", "sharing_server", null);
|
||||
return getLc().getFileTransferServer();
|
||||
}
|
||||
|
||||
public void setSharingPictureServerUrl(String url) {
|
||||
getConfig().setString("app", "sharing_server", url);
|
||||
getLc().setFileTransferServer(url);
|
||||
}
|
||||
|
||||
public void setRemoteProvisioningUrl(String url) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue