mirror of
https://github.com/rustdesk/rustdesk
synced 2026-05-24 09:28:23 +00:00
bug fix
This commit is contained in:
parent
60783c875e
commit
c58659c7f9
1 changed files with 1 additions and 1 deletions
|
|
@ -269,7 +269,7 @@ function _getByName(name, arg) {
|
||||||
case 'image_quality':
|
case 'image_quality':
|
||||||
return curConn.getImageQuality();
|
return curConn.getImageQuality();
|
||||||
case 'translate':
|
case 'translate':
|
||||||
const arg = JSON.parse(arg);
|
arg = JSON.parse(arg);
|
||||||
return translate(arg.locale, arg.text);
|
return translate(arg.locale, arg.text);
|
||||||
case 'peer_option':
|
case 'peer_option':
|
||||||
return curConn.getOption(arg);
|
return curConn.getOption(arg);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue