mirror of
https://github.com/rustdesk/rustdesk.git
synced 2025-05-11 02:16:00 +02:00
web only decode the latest image (#9689)
1. web only decode the latest image 2. web/ios remove relay server config when import Signed-off-by: 21pages <sunboeasy@gmail.com>
This commit is contained in:
parent
defb3e6c73
commit
53d11e99d7
2 changed files with 24 additions and 0 deletions
|
@ -3177,6 +3177,9 @@ importConfig(List<TextEditingController>? controllers, List<RxString>? errMsgs,
|
|||
if (text != null && text.isNotEmpty) {
|
||||
try {
|
||||
final sc = ServerConfig.decode(text);
|
||||
if (isWeb || isIOS) {
|
||||
sc.relayServer = '';
|
||||
}
|
||||
if (sc.idServer.isNotEmpty) {
|
||||
Future<bool> success = setServerConfig(controllers, errMsgs, sc);
|
||||
success.then((value) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue