Skip to content

Commit 9e483ae

Browse files
authored
Merge pull request #1277 from nextcloud/backport/1276/stable24
[stable24] Fix checking for links finally
2 parents 43dca33 + b3abb0e commit 9e483ae

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

js/notifications-main.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/notifications-main.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Components/Notification.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ export default {
193193
194194
let parametersHaveLink = false
195195
Object.keys(this.subjectRichParameters).forEach(p => {
196-
if (p.link) {
196+
if (this.subjectRichParameters[p].link) {
197197
parametersHaveLink = true
198198
}
199199
})

0 commit comments

Comments
 (0)