BugFIxing - SIT-Cache Reponse Status
diff --git a/projects/sit-web-cache/src/app.controller.ts b/projects/sit-web-cache/src/app.controller.ts
index 001e5d0..baff59c 100644
--- a/projects/sit-web-cache/src/app.controller.ts
+++ b/projects/sit-web-cache/src/app.controller.ts
@@ -35,7 +35,7 @@
     try {
       this.appService.getSITs((data: any) => {
         if (!!data && !!data.length) {
-          res.status(HttpStatus.FOUND);
+          res.status(HttpStatus.OK);
           res.send(data);
         } else {
           res.statusMessage = 'File is empty of file not found!';