Start adding server support

This commit is contained in:
2025-09-24 21:08:59 -04:00
parent 9e2e7aabe8
commit 4e721efa55
47 changed files with 1652 additions and 266 deletions

View File

@@ -9,12 +9,7 @@ public static class SettingsStore
{
public static object OpenDataStore()
{
if (!Database.Exists)
return null;
Database.Load();
return Database.Entities;
return !Database.Exists ? null : new FeedCenterEntities();
}
public static string GetSettingValue(object dataStore, string name, Version _)