Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
message_subscribe
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
message_subscribe
Merge requests
!21
Issue
#3418224
by bluegeek9: Type Error after recent update to message_notify
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3418224
by bluegeek9: Type Error after recent update to message_notify
issue/message_subscribe-3418224:3418224-type-error-after
into
8.x-1.x
Overview
0
Commits
9
Pipelines
9
Changes
12
Merged
Steven Ayers
requested to merge
issue/message_subscribe-3418224:3418224-type-error-after
into
8.x-1.x
1 year ago
Overview
0
Commits
9
Pipelines
9
Changes
12
Expand
Closes
#3418224
0
0
Merge request reports
Compare
8.x-1.x
version 8
4c35c282
1 year ago
version 7
28b2400a
1 year ago
version 6
47fe7263
1 year ago
version 5
2d0ad9cc
1 year ago
version 4
eced67f2
1 year ago
version 3
cfe0b1ca
1 year ago
version 2
4fa3c605
1 year ago
version 1
2bc5b6fa
1 year ago
8.x-1.x (base)
and
latest version
latest version
4c35c282
9 commits,
1 year ago
version 8
4c35c282
9 commits,
1 year ago
version 7
28b2400a
8 commits,
1 year ago
version 6
47fe7263
7 commits,
1 year ago
version 5
2d0ad9cc
5 commits,
1 year ago
version 4
eced67f2
4 commits,
1 year ago
version 3
cfe0b1ca
3 commits,
1 year ago
version 2
4fa3c605
2 commits,
1 year ago
version 1
2bc5b6fa
1 commit,
1 year ago
12 files
+
66
−
25
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
12
Search (e.g. *.vue) (Ctrl+P)
message_subscribe_ui/src/Controller/SubscriptionController.php
+
2
−
1
Options
@@ -153,7 +153,8 @@ final class SubscriptionController extends ControllerBase {
$view
=
$this
->
getView
(
$user
,
$flag
);
$result
=
$view
->
preview
();
$result
[
'#cache'
][
'tags'
]
=
$flag
->
getCacheTags
()
+
$view
->
getCacheTags
();
}
catch
(
MessageSubscribeException
$e
)
{
}
catch
(
MessageSubscribeException
$e
)
{
watchdog_exception
(
'message_subscribe_ui'
,
$e
);
$result
[
'#markup'
]
=
$this
->
t
(
'There was an exception displaying the subscriptions for this user. View recently logged messages for more information.'
);
}
Loading