From eea5eee933cc40bde98ff7fa69b13133d6de5f2b Mon Sep 17 00:00:00 2001 From: taynpg Date: Mon, 7 Apr 2025 23:55:28 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E4=BF=AE=E6=AD=A3=E4=B8=80?= =?UTF-8?q?=E4=B8=AA=E8=BF=94=E5=9B=9E=E9=94=99=E8=AF=AF=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/client.cpp b/client/client.cpp index 225c20c..4da3f9c 100644 --- a/client/client.cpp +++ b/client/client.cpp @@ -824,7 +824,7 @@ std::string CClient::read_uuid() std::ifstream in_file(uuid_path.string(), std::ios::in); if (!in_file.is_open()) { TLOGE("Open File Failed {}", uuid_path.string()); - return false; + return ""; } std::string uuid; in_file >> uuid;