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

github.com/nextcloud/survey_client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2016-09-12 11:26:46 +0300
committerJoas Schilling <coding@schilljs.com>2016-09-12 11:26:46 +0300
commit83cbc6a4000875e66e02e4b1076e291c84447c48 (patch)
treeb7bcb24fa2e3758114d2f8b168e971b2b7617164 /appinfo
parent8a2eafa9b445a5d011702479deeda63cacf16730 (diff)
Fix the notification URLs when they where created too early
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/app.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/appinfo/app.php b/appinfo/app.php
index 807cac9..7764901 100644
--- a/appinfo/app.php
+++ b/appinfo/app.php
@@ -25,7 +25,8 @@ $notificationManager = \OC::$server->getNotificationManager();
$notificationManager->registerNotifier(
function() {
return new \OCA\Survey_Client\Notifier(
- \OC::$server->getL10NFactory()
+ \OC::$server->getL10NFactory(),
+ \OC::$server->getURLGenerator()
);
},
function() use ($l) {