]> git.mxchange.org Git - friendica.git/blobdiff - src/Console/Config.php
Use the existing VAPID key generation
[friendica.git] / src / Console / Config.php
index 831ea9e9c5156822bf8ef7dbb57a0efc89fc4f8d..3c775d43292053a58cc7ba7e580b249a3ab1584b 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2021, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -128,6 +128,10 @@ HELP;
                                throw new RuntimeException("$cat.$key is an array and can't be set using this command.");
                        }
 
+                       if ($this->config->get($cat, $key) === $value) {
+                               throw new RuntimeException("$cat.$key already set to $value.");
+                       }
+
                        $result = $this->config->set($cat, $key, $value);
                        if ($result) {
                                $this->out("{$cat}.{$key} <= " .