summary refs log tree commit diff
diff options
context:
space:
mode:
authorq234rty <q23456yuiop@gmail.com>2023-08-17 15:13:01 +0800
committerq234rty <q23456yuiop@gmail.com>2023-08-17 15:16:26 +0800
commit871e403f6799df48cfbbe08eba56d473a0c34216 (patch)
tree9c258fc85dcdc2eddddd9c4d5f8253349c1dba3b
parentMerge pull request #1548 from Nheko-Reborn/cleanupWidgetsStuff (diff)
downloadnheko-871e403f6799df48cfbbe08eba56d473a0c34216.tar.xz
Fix build with fmt 10.1.0
I have no idea whether this is a fmt bug, and if this isn't a fmt bug how did this work before, but oh well...
-rw-r--r--src/ChatPage.cpp2
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; }