Completed
Push — master ( f6a08f...da3c95 )
by
unknown
02:41 queued 01:21
created
Module.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     public function getServerUrl()
23 23
     {
24 24
         $url = $this->settings->get('serverUrl');
25
-        if (empty($url)) {
25
+        if ( empty($url) ) {
26 26
             return 'https://discordapp.com' || 'https://discord.com';
27 27
         }
28 28
         return $url;
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     public function getOrder()
32 32
     {
33 33
         $sortOrder = $this->settings->get('sortOrder');
34
-        if (empty($sortOrder)) {
34
+        if ( empty($sortOrder) ) {
35 35
             return '100';
36 36
         }
37 37
         return $sortOrder;
Please login to merge, or discard this patch.