Skip to content

Commit

Permalink
disable cache by default
Browse files Browse the repository at this point in the history
  • Loading branch information
g3gg0 committed Aug 12, 2024
1 parent 8264e66 commit d54236d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/settings.c
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ static void option_map_init(uint8_t settingsId)
OPTION_STRING("hass.id", &settings->hass.id, "teddyCloud_Server", "Unique ID", "Unique ID to identify this device", LEVEL_DETAIL)

OPTION_TREE_DESC("tonie_json", "Tonie JSON", LEVEL_DETAIL)
OPTION_BOOL("tonie_json.cache_images", &settings->tonie_json.cache_images, TRUE, "Cache images", "Cache figurine images locally", LEVEL_DETAIL)
OPTION_BOOL("tonie_json.cache_images", &settings->tonie_json.cache_images, FALSE, "Cache images", "Cache figurine images locally", LEVEL_DETAIL)
OPTION_BOOL("tonie_json.cache_preload", &settings->tonie_json.cache_preload, FALSE, "Preload all images", "Download all figurine images on startup", LEVEL_DETAIL)
OPTION_END()

Expand Down

0 comments on commit d54236d

Please sign in to comment.