mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-15 06:12:29 -06:00
Updated onboarding, reformatted files, improved referenced documents view, updated error handling
This commit is contained in:
@@ -34,11 +34,13 @@ class LocalVault {
|
||||
}
|
||||
|
||||
Future<ClientCertificate?> loadCertificate() async {
|
||||
return loadAuthenticationInformation().then((value) => value?.clientCertificate);
|
||||
return loadAuthenticationInformation()
|
||||
.then((value) => value?.clientCertificate);
|
||||
}
|
||||
|
||||
Future<bool> storeApplicationSettings(ApplicationSettingsState settings) {
|
||||
return sharedPreferences.setString(applicationSettingsKey, json.encode(settings.toJson()));
|
||||
return sharedPreferences.setString(
|
||||
applicationSettingsKey, json.encode(settings.toJson()));
|
||||
}
|
||||
|
||||
Future<ApplicationSettingsState?> loadApplicationSettings() async {
|
||||
|
||||
Reference in New Issue
Block a user