This commit is contained in:
Mars 2025-03-06 16:43:29 -05:00
parent d776ddf807
commit 427b7b48a5
Signed by: pupbrained
GPG key ID: 874E22DF2F9DFCB5
8 changed files with 255 additions and 251 deletions

View file

@ -40,7 +40,7 @@ namespace {
DEBUG_LOG("Reading from cache file...");
const std::string content((std::istreambuf_iterator(ifs)), std::istreambuf_iterator<char>());
const std::string content((std::istreambuf_iterator<char>(ifs)), std::istreambuf_iterator<char>());
rfl::Result<WeatherOutput> result = rfl::json::read<WeatherOutput>(content);
if (!result)