From 8cea95de255c74df8c73d7adbb829d5d1058f6e3 Mon Sep 17 00:00:00 2001 From: Dave Allie Date: Mon, 19 Jan 2026 22:44:38 +1100 Subject: [PATCH] Fix format --- lib/KOReaderSync/KOReaderSyncClient.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/KOReaderSync/KOReaderSyncClient.cpp b/lib/KOReaderSync/KOReaderSyncClient.cpp index 32379f28..c5053c64 100644 --- a/lib/KOReaderSync/KOReaderSyncClient.cpp +++ b/lib/KOReaderSync/KOReaderSyncClient.cpp @@ -21,9 +21,7 @@ void addAuthHeaders(HTTPClient& http) { http.addHeader("x-auth-key", KOREADER_STORE.getMd5Password().c_str()); } -bool isHttpsUrl(const std::string& url) { - return url.rfind("https://", 0) == 0; -} +bool isHttpsUrl(const std::string& url) { return url.rfind("https://", 0) == 0; } } // namespace KOReaderSyncClient::Error KOReaderSyncClient::authenticate() {