diff options
author | DeepBlueV7.X <nicolas.werner@hotmail.de> | 2023-08-22 01:37:57 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-22 01:37:57 +0000 |
commit | 614facf93c2b5d6118beb822cc542ac53a883c37 (patch) | |
tree | 9c258fc85dcdc2eddddd9c4d5f8253349c1dba3b | |
parent | Merge pull request #1548 from Nheko-Reborn/cleanupWidgetsStuff (diff) | |
parent | Fix build with fmt 10.1.0 (diff) | |
download | nheko-614facf93c2b5d6118beb822cc542ac53a883c37.tar.xz |
Merge pull request #1552 from q234rty/master
Fix build with fmt 10.1.0
-rw-r--r-- | src/ChatPage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ChatPage.cpp b/src/ChatPage.cpp index 4686b0f5..06d88303 100644 --- a/src/ChatPage.cpp +++ b/src/ChatPage.cpp @@ -1269,7 +1269,7 @@ ChatPage::getBackupVersion() nhlog::crypto()->info("Our backup key {} does not match the one " "used in the online backup {}", pubkey, - auth_data["public_key"]); + auth_data["public_key"].get<std::string>()); cache::client()->deleteBackupVersion(); return; } |