fix response status judge bug
diff --git a/src/services/report.ts b/src/services/report.ts
index 1c19b9c..8525d04 100644
--- a/src/services/report.ts
+++ b/src/services/report.ts
@@ -34,7 +34,7 @@
 
     fetch(sendRequest)
       .then((response) => {
-        if (response.status !== 200) {
+        if (response.status < 200 || response.status > 300) {
           throw new Error('Something went wrong on api server!');
         }
       })