feat: use HTTP/2 for all network requests

This commit is contained in:
edde746
2026-04-06 22:53:13 +02:00
parent 0db5cb7025
commit 52b8944d71
11 changed files with 128 additions and 42 deletions
+1 -1
View File
@@ -133,7 +133,7 @@ class _LogsScreenState extends State<LogsScreen> {
);
try {
final response = await createHttpClient().post(
final response = await httpClient.post(
'https://ice.plezy.app/logs',
data: logText,
options: Options(contentType: 'text/plain'),