mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-02-23 15:14:49 +01:00
Simple nullability fix for StoreRepo.UpdateSettings
This commit is contained in:
@@ -613,7 +613,7 @@ retry:
|
||||
return data.ToDictionary(pair => pair.Key, pair => Deserialize<T>(pair.Value.Value));
|
||||
}
|
||||
|
||||
public async Task UpdateSetting<T>(string storeId, string name, T obj) where T : class
|
||||
public async Task UpdateSetting<T>(string storeId, string name, T? obj) where T : class
|
||||
{
|
||||
await using var ctx = _ContextFactory.CreateContext();
|
||||
StoreSettingData? settings = null;
|
||||
|
||||
Reference in New Issue
Block a user