mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 23:04:04 +00:00
fixed opsgenieRegion not being the same enum between the frontend and backend (#3616)
This commit is contained in:
parent
7bfdb82f5d
commit
1772158d62
1 changed files with 2 additions and 2 deletions
|
@ -20,10 +20,10 @@ class Opsgenie extends NotificationProvider {
|
|||
|
||||
try {
|
||||
switch (notification.opsgenieRegion) {
|
||||
case "US":
|
||||
case "us":
|
||||
opsgenieAlertsUrl = opsgenieAlertsUrlUS;
|
||||
break;
|
||||
case "EU":
|
||||
case "eu":
|
||||
opsgenieAlertsUrl = opsgenieAlertsUrlEU;
|
||||
break;
|
||||
default:
|
||||
|
|
Loading…
Reference in a new issue