Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2026-01-02 12:05:31 +08:00
parent 80e007bac6
commit 041af37bb0
67 changed files with 775 additions and 838 deletions

View File

@@ -55,8 +55,8 @@ class WhisperLinkSettingController extends GetxController {
Future<void> getIsPinned() async {
final res = await ImGrpc.sessionUpdate(sessionId: sessionId);
if (res.isSuccess) {
isPinned.value = res.data.session.isPinned;
if (res case Success(:final response)) {
isPinned.value = response.session.isPinned;
}
}