diff --git a/.gitmodules b/.gitmodules
index 8cd5c43f..55c34521 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,3 +1,3 @@
[submodule "naplo-plus"]
path = refilc_plus
- url = git@github.com:refilc/naplo-plus.git
+ url = https://git.qwit.cloud/refilc/student-plus.git
diff --git a/.idea/misc.xml b/.idea/misc.xml
index de791dde..c39d7781 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -1,4 +1,3 @@
-
\ No newline at end of file
diff --git a/refilc/lib/api/client.dart b/refilc/lib/api/client.dart
index 27f85455..6d246bd1 100644
--- a/refilc/lib/api/client.dart
+++ b/refilc/lib/api/client.dart
@@ -127,7 +127,8 @@ class FilcAPI {
http.Response res = await http.get(Uri.parse(news));
if (res.statusCode == 200) {
- return (jsonDecode(res.body) as List)
+ String utf8Body = utf9.decode(res.bodyBytes);
+ return (jsonDecode(utf8Body) as List)
.cast