1
0
mirror of https://github.com/TheFunny/ArisuAutoSweeper synced 2026-06-09 20:04:52 +00:00

fix(webui): use utf-8 encoding for icon reading

This commit is contained in:
2023-11-12 00:10:43 +08:00
parent 1b83b7077f
commit b0621b48e6
+1 -1
View File
@@ -376,7 +376,7 @@ def add_css(filepath):
def _read(path):
with open(path, "r") as f:
with open(path, "r", encoding="utf-8") as f:
return f.read()