From 26b2564b405f71d9911a9c0c64fb9b673cfa4abe Mon Sep 17 00:00:00 2001 From: Brooke Kuhlmann Date: Thu, 15 Jan 2026 08:49:56 -0700 Subject: [PATCH] Updated container settings to be fresh Necessary to ensure settings are unique per instance because, unfortunately, we have to deal with talking to two different TRMNL API endpoints now (i.e. `https://usetrmnl.com` and `https://usetrmnl.com/api`). Milestone: patch --- lib/trmnl/api/container.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/trmnl/api/container.rb b/lib/trmnl/api/container.rb index e64ea8c..27ba731 100644 --- a/lib/trmnl/api/container.rb +++ b/lib/trmnl/api/container.rb @@ -10,7 +10,7 @@ module TRMNL module Container extend Containable - register(:settings) { TRMNL::API::Configuration::Loader.new.call } + register(:settings, as: :fresh) { TRMNL::API::Configuration::Loader.new.call } register(:requester) { API::Requester.new } register(:logger) { Cogger.new id: "trmnl-api", formatter: :json }