Merge pull request #5847 from 21pages/tab_label

try fix remote tab label update
This commit is contained in:
RustDesk
2023-09-28 10:39:21 +08:00
committed by GitHub
5 changed files with 4 additions and 25 deletions

View File

@@ -823,11 +823,6 @@ pub fn main_set_peer_option_sync(id: String, key: String, value: String) -> Sync
}
pub fn main_set_peer_alias(id: String, alias: String) {
main_broadcast_message(&HashMap::from([
("name", "alias"),
("id", &id),
("alias", &alias),
]));
set_peer_option(id, "alias".to_owned(), alias)
}