Browse Source

Better error message and updated licence

Lukas Metzger 7 years ago
parent
commit
7cb02511ae
2 changed files with 3 additions and 3 deletions
  1. 1 1
      LICENSE
  2. 2 2
      backend/src/controllers/Remote.php

+ 1 - 1
LICENSE

@@ -187,7 +187,7 @@
       same "printed page" as the copyright notice for easier
       identification within third-party archives.
 
-   Copyright 2016-2017 Lukas Metzger
+   Copyright 2016-2018 Lukas Metzger
 
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.

+ 2 - 2
backend/src/controllers/Remote.php

@@ -73,8 +73,8 @@ class Remote
             $this->logger->debug('User tried to update non existent record via changekey api.');
             return $res->withJson(['error' => 'The given record does not exist.'], 404);
         } catch (\Exceptions\ForbiddenException $e) {
-            $this->logger->debug('User tried to update an record via changekey api with incorrect password.');
-            return $res->withJson(['error' => 'The provided password was invalid.'], 403);
+            $this->logger->debug('User tried to update an record via changekey api with incorrect signature.');
+            return $res->withJson(['error' => 'The provided signature was invalid.'], 403);
         }
 
         $this->logger->info('Record ' . $record . ' was changed via the changekey api.');