Skip to content

Commit 9f91e1b

Browse files
authored
Fix uploadGrades endpoint
1 parent 710eed1 commit 9f91e1b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/DataFetcher.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ class DataFetcher {
116116
var fd = new FormData.fromMap(
117117
{"grades": await MultipartFile.fromFile(filePath)},
118118
);
119-
await dio.put("/info", data: fd);
119+
await dio.put("user/grades/pdf", data: fd);
120120
return true;
121121
} on DioError catch (_) {
122122
return false;

0 commit comments

Comments
 (0)