Bug fixes (#637)

* Fix formatting

* Handle case where server does not provide permissions information

* Enhanced URL checks

* Enhanced check

* Fix for error dialog

* Bump version information
This commit is contained in:
Oliver 2025-04-18 19:12:34 +10:00 committed by GitHub
parent 762d1ae156
commit 52879c0fc2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 50 additions and 29 deletions

View file

@ -228,13 +228,15 @@ Future<void> showServerError(String url, String title, String description) async
playAudioFile("sounds/server_error.mp3");
}
description += "\nURL: $url";
showSnackIcon(
title,
success: false,
actionText: L10().details,
onAction: () {
showErrorDialog(
L10().serverError,
title,
description: description,
icon: TablerIcons.server
);