fix: vyhazovat chybu místo false u burzy

This commit is contained in:
Matyáš Caras 2022-06-02 15:25:39 +02:00
parent 77d54f4a3f
commit 32c80ad552
3 changed files with 5 additions and 3 deletions

View file

@ -1,3 +1,5 @@
## 0.1.0-alpha.17
- Debug informace v `objednatZBurzy`
## 0.1.0-alpha.16
- Opravit zobrazení zda-li jde jídlo objednat, když není objednané žádné jídlo
## 0.1.0-alpha.15

View file

@ -460,13 +460,13 @@ class Canteen {
/// - `b` - Jídlo __z burzy__, které chceme objednat | [Burza]
///
/// Výstup:
/// - [bool], `true`, pokud bylo jídlo úspěšně objednáno z burzy, jinak `false`
/// - [bool], `true`, pokud bylo jídlo úspěšně objednáno z burzy, jinak `Exception`
Future<bool> objednatZBurzy(Burza b) async {
if (!prihlasen) return Future.error("Uživatel není přihlášen");
try {
await _getRequest("/faces/secured/" + b.url!);
} catch (e) {
return false;
return Future.error(e.toString());
}
return true;
}

View file

@ -1,6 +1,6 @@
name: canteenlib
description: Library for communication with the czech canteen food ordering system iCanteen
version: 0.1.0-alpha.16
version: 0.1.0-alpha.17
repository: 'https://github.com/hernikplays/canteenlib'
issue_tracker: 'https://github.com/hernikplays/canteenlib/issues'
documentation: 'https://docs.hernikplays.cz'