diff --git a/lib/api/smms_api.dart b/lib/api/smms_api.dart index 5266e59..f16c0c1 100644 --- a/lib/api/smms_api.dart +++ b/lib/api/smms_api.dart @@ -24,7 +24,7 @@ class SMMSApi { static Future delete(String hash) async { var op = await oAuth(); - Response res = await NetUtils.getInstance().post(BASE_URL + 'delete/' + hash ?? '', options: op); + Response res = await NetUtils.getInstance().get(BASE_URL + 'delete/' + hash ?? '', options: op); return res.data; }