Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/notifications.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMario Danic <mario@lovelyhq.com>2018-07-11 11:24:19 +0300
committerJoas Schilling <coding@schilljs.com>2018-07-11 12:28:29 +0300
commit0f0cb14fcb9646cae4a5104a0cda3f53946a8a98 (patch)
treed862c1cf9cef19775cd2f2abf466ea75cae23f64
parent84507da1cce7072ddecdfe374132e0126f6bb9f6 (diff)
Use single quotes
Signed-off-by: Mario Danic <mario@lovelyhq.com>
-rw-r--r--lib/Push.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Push.php b/lib/Push.php
index dbcc067..d25f882 100644
--- a/lib/Push.php
+++ b/lib/Push.php
@@ -189,9 +189,9 @@ class Push {
];
if ($isTalkNotification) {
- $priority = "high";
+ $priority = 'high';
} else {
- $priority = "normal";
+ $priority = 'normal';
}
if (!openssl_public_encrypt(json_encode($data), $encryptedSubject, $device['devicepublickey'], OPENSSL_PKCS1_PADDING)) {