You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When caching is enabled, the Settings class will first retrieve the current value for a given key and determine if it has changed. This isn't an issue under most cases, unless you're using context. Since Settings is using the get method to retrieve the current value, the context gets reset in that method, thus causing any further code to ignore the context Settings was given. Since it does that, Settings will not be aware of any context when it generates the setting key when it goes to persist the setting.
Context
Package version: 1.0.2
Laravel version: 8.11.2
The text was updated successfully, but these errors were encountered:
When caching is enabled, the Settings class will first retrieve the current value for a given key and determine if it has changed. This isn't an issue under most cases, unless you're using context. Since Settings is using the
get
method to retrieve the current value, the context gets reset in that method, thus causing any further code to ignore the context Settings was given. Since it does that, Settings will not be aware of any context when it generates the setting key when it goes to persist the setting.Context
The text was updated successfully, but these errors were encountered: