Skip to content
Snippets Groups Projects
Commit 37b2b769 authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

Update Key.php

parent 8759d63e
No related branches found
No related tags found
2 merge requests!1895Development,!1755Update Key.php
...@@ -6,14 +6,14 @@ class Key ...@@ -6,14 +6,14 @@ class Key
{ {
public $key; public $key;
public $status; # valid key = true, invalid key = false, unidentified key = null public $status; # valid key = true, invalid key = false, unidentified key = null
private $keyserver = "https://key.metager.de/"; private $keyserver = "https://key.metager3.de/";
public function __construct($key, $status = null) public function __construct($key, $status = null)
{ {
$this->key = $key; $this->key = $key;
$this->status = $status; $this->status = $status;
if (getenv("APP_ENV") !== "production") { if (getenv("APP_ENV") !== "production") {
$this->keyserver = "https://dev.key.metager.de/"; $this->keyserver = "https://key.metager3.de/";
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment