Merge pull request #5 from StevanFreeborn/stevanfreeborn/fix/locate-appsettings-file-properly

fix: use GetSettingsPath when checking if settings exists
This commit is contained in:
Stevan Freeborn
2025-04-05 13:17:33 -05:00
committed by GitHub
@@ -7,7 +7,7 @@ class AppSettingsManager(IFileSystem fileSystem) : IAppSettingsManager
public bool AppSettingsExist()
{
return _fileSystem.Path.Exists(SettingsFileName);
return _fileSystem.Path.Exists(GetSettingsPath());
}
public async Task<AppSettings> GetAppSettingsAsync()