Fix format

This commit is contained in:
Dave Allie 2026-01-19 22:44:38 +11:00
parent b32bf51f0a
commit 8cea95de25
No known key found for this signature in database
GPG Key ID: F2FDDB3AD8D0276F

View File

@ -21,9 +21,7 @@ void addAuthHeaders(HTTPClient& http) {
http.addHeader("x-auth-key", KOREADER_STORE.getMd5Password().c_str()); http.addHeader("x-auth-key", KOREADER_STORE.getMd5Password().c_str());
} }
bool isHttpsUrl(const std::string& url) { bool isHttpsUrl(const std::string& url) { return url.rfind("https://", 0) == 0; }
return url.rfind("https://", 0) == 0;
}
} // namespace } // namespace
KOReaderSyncClient::Error KOReaderSyncClient::authenticate() { KOReaderSyncClient::Error KOReaderSyncClient::authenticate() {