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

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2019-10-23 16:29:47 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2019-10-23 16:32:59 +0300
commit8b41503c90b9ab67626208dc25b7b786906173cd (patch)
treee421a3c778176a10d489c648a5d00bef23596715 /lib/AppInfo
parent8d73cddbcbd2c5fd316e3de64c192bca382554b7 (diff)
Fix missing account display name and email prefill
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/AppInfo')
-rw-r--r--lib/AppInfo/Application.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/AppInfo/Application.php b/lib/AppInfo/Application.php
index 87ce3bffc..7968a4de3 100644
--- a/lib/AppInfo/Application.php
+++ b/lib/AppInfo/Application.php
@@ -53,8 +53,10 @@ use OCP\Util;
class Application extends App {
+ public const APP_ID = 'mail';
+
public function __construct(array $urlParams = []) {
- parent::__construct('mail', $urlParams);
+ parent::__construct(self::APP_ID, $urlParams);
BootstrapSingleton::getInstance($this->getContainer())->boot();
}