Skip to content

Commit

Permalink
Fix api call path
Browse files Browse the repository at this point in the history
  • Loading branch information
sukso96100 committed Aug 3, 2023
1 parent 07187cf commit 84c1dc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/kioskclient.dart
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class KioskClient {
}

Future<(bool, String)> checkInOnServer(String jwt) async {
var url = Uri.parse("$host/checkin");
var url = Uri.parse("$host/checkin/");
var response = await http.post(url,
headers: {'Authorization': 'Token $apiToken', "ParticipantToken": jwt});
var status = response.statusCode;
Expand Down

0 comments on commit 84c1dc2

Please sign in to comment.