Add document scanner
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
2025-07-08 23:19:28 +02:00
parent 52bbcf708f
commit a4b630c66e
7 changed files with 78 additions and 17 deletions

View File

@ -32,8 +32,13 @@ class LoadStartupData extends HookConsumerWidget {
Widget build(BuildContext context, WidgetRef ref) {
final serverConfig = ref.watch(_loadStartupElementsProvider);
tryAgain() {
ref.refresh(_loadStartupElementsProvider);
tryAgain() async {
try {
final val = ref.refresh(_loadStartupElementsProvider);
Logger.root.info("Load again startup result: $val");
} catch (e, s) {
Logger.root.shout("Failed to try again startup loading! $e $s");
}
}
handleSignOut() {