fix: use GetSettingsPath when checking if settings exists

This commit is contained in:
Stevan Freeborn
2025-04-05 13:13:44 -05:00
parent 660533b99e
commit b3afb2b7d2
@@ -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()