fix: vyhazovat chybu místo false u burzy
This commit is contained in:
parent
77d54f4a3f
commit
32c80ad552
3 changed files with 5 additions and 3 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
## 0.1.0-alpha.17
|
||||||
|
- Debug informace v `objednatZBurzy`
|
||||||
## 0.1.0-alpha.16
|
## 0.1.0-alpha.16
|
||||||
- Opravit zobrazení zda-li jde jídlo objednat, když není objednané žádné jídlo
|
- Opravit zobrazení zda-li jde jídlo objednat, když není objednané žádné jídlo
|
||||||
## 0.1.0-alpha.15
|
## 0.1.0-alpha.15
|
||||||
|
|
|
@ -460,13 +460,13 @@ class Canteen {
|
||||||
/// - `b` - Jídlo __z burzy__, které chceme objednat | [Burza]
|
/// - `b` - Jídlo __z burzy__, které chceme objednat | [Burza]
|
||||||
///
|
///
|
||||||
/// Výstup:
|
/// 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 {
|
Future<bool> objednatZBurzy(Burza b) async {
|
||||||
if (!prihlasen) return Future.error("Uživatel není přihlášen");
|
if (!prihlasen) return Future.error("Uživatel není přihlášen");
|
||||||
try {
|
try {
|
||||||
await _getRequest("/faces/secured/" + b.url!);
|
await _getRequest("/faces/secured/" + b.url!);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
return false;
|
return Future.error(e.toString());
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name: canteenlib
|
name: canteenlib
|
||||||
description: Library for communication with the czech canteen food ordering system iCanteen
|
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'
|
repository: 'https://github.com/hernikplays/canteenlib'
|
||||||
issue_tracker: 'https://github.com/hernikplays/canteenlib/issues'
|
issue_tracker: 'https://github.com/hernikplays/canteenlib/issues'
|
||||||
documentation: 'https://docs.hernikplays.cz'
|
documentation: 'https://docs.hernikplays.cz'
|
||||||
|
|
Reference in a new issue