Переглянути джерело

V0.6.11
1、修复了CurlFtp一点小问题

Apple 3 місяців тому
батько
коміт
e2dcde16aa
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      common/CurlFtp/CurlFtp.cpp

+ 1 - 1
common/CurlFtp/CurlFtp.cpp

@@ -1296,7 +1296,7 @@ bool CurlFtp::checkLocalFileExist(const std::string& localFile)
     /* 检查文件是否存在 */
     bool result = false;
 #if (__cplusplus >= 201703L)
-    result = std::filesystem::exists(localFile)
+    result = std::filesystem::exists(localFile);
 #else
     result = QFile(localFile.c_str()).exists();
 #endif /* (__cplusplus >= 201703L) */