TF-3977 Setup disable thread as default

This commit is contained in:
dab246
2025-09-03 13:11:30 +07:00
committed by Dat H. Pham
parent 612fc75f02
commit 7fdfb97fc5
2 changed files with 3 additions and 3 deletions
@@ -29,7 +29,7 @@ class ThreadDetailLocalDataSourceImpl implements ThreadDetailDataSource {
Future<bool> getThreadDetailStatus() {
return Future.sync(() async {
final preferencesRoot = await _preferencesSettingManager.loadPreferences();
return preferencesRoot.setting.spamReport.isEnabled;
return preferencesRoot.setting.threadDetail.isEnabled;
}).catchError(_exceptionThrower.throwException);
}
}