Skip to content

Commit

Permalink
Merge branch 'rustdesk:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangbo8418 authored Feb 2, 2024
2 parents 9b4fa34 + 0cf4711 commit ec959c8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions src/lang/pl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -580,11 +580,11 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("swap-left-right-mouse", "Zamień przyciski myszki (lewy - prawy)"),
("2FA code", "Kod 2FA"),
("More", "Więcej"),
("enable-2fa-title", ""),
("enable-2fa-desc", ""),
("wrong-2fa-code", ""),
("enter-2fa-title", ""),
("Email verification code must be 6 characters.", ""),
("2FA code must be 6 digits.", ""),
("enable-2fa-title", "Włącz autoryzację dwuskładnikową (2FA)"),
("enable-2fa-desc", "Skonfiguruj teraz swój moduł uwierzytelniający. Na telefonie lub komputerze możesz używać aplikacji autoryzującej, takiej jak Authy, Microsoft lub Google Authenticator.\n\nZeskanuj kod QR za pomocą aplikacji i wprowadź kod wyświetlany przez aplikację, aby włączyć uwierzytelnianie dwuskładnikowe."),
("wrong-2fa-code", "Nie można zweryfikować kodu. Sprawdź, czy kod oraz ustawienia lokalnego czasu są prawidłowe."),
("enter-2fa-title", "Autoryzacja dwuskładnikowa"),
("Email verification code must be 6 characters.", "Kod weryfikacyjny wysłany e-mailem musi mieć 6 znaków."),
("2FA code must be 6 digits.", "Kod 2FA musi zawierać 6 cyfr."),
].iter().cloned().collect();
}
2 changes: 1 addition & 1 deletion src/server/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1221,7 +1221,7 @@ impl Connection {
Ok(displays) => {
// For compatibility with old versions, we need to send the displays to the peer.
// But the displays may be updated later, before creating the video capturer.
pi.displays = displays.clone();
pi.displays = displays;
pi.current_display = self.display_idx as _;
res.set_peer_info(pi);
sub_service = true;
Expand Down

0 comments on commit ec959c8

Please sign in to comment.