From de7c62cbce731c1409153c46dfb4c7854f57c255 Mon Sep 17 00:00:00 2001
From: TimZ99 <TimZ99@users.noreply.github.com>
Date: Thu, 15 Apr 2021 02:52:27 +0200
Subject: [PATCH] Fixed typo in array - related to jabber

Fixes #1049.
---
 src/psm/Util/Server/Updater/StatusNotifier.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/psm/Util/Server/Updater/StatusNotifier.php b/src/psm/Util/Server/Updater/StatusNotifier.php
index a1f972d6..6951efea 100644
--- a/src/psm/Util/Server/Updater/StatusNotifier.php
+++ b/src/psm/Util/Server/Updater/StatusNotifier.php
@@ -287,7 +287,7 @@ class StatusNotifier
             $this->combine ? $this->setCombi('telegram') : $this->notifyByTelegram($users);
         }
 
-        if ($this->send_jabber && $this->server['jaber'] == 'yes') {
+        if ($this->send_jabber && $this->server['jabber'] == 'yes') {
             $this->combine ? $this->setCombi('jabber') : $this->notifyByJabber($users);
         }