Merge pull request #1463 from nextcloud/fix/mailnotification

fix comparism in mail controller
This commit is contained in:
René Gieling 2021-03-06 21:40:38 +01:00 коммит произвёл GitHub
Родитель ddebf80054 b3c1284cb9
Коммит 52f6db1182
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -267,7 +267,7 @@ class MailService {
$this->trans->t('"{title}" had recent activity: ')
));
foreach ($log as $logItem) {
if ($logItem->getPollId() === $poll->getId()) {
if (intval($logItem->getPollId()) === $poll->getId()) {
if ($poll->getAnonymous() || $poll->getShowResults() !== "always") {
$displayName = $this->trans->t('A user');
} elseif ($this->userManager->get($logItem->getUserId()) instanceof IUser) {