mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02:00
Try to fix exception: Cannot read property title of undefined.
Thanks to xet7 !
This commit is contained in:
parent
0e0bea0139
commit
4a074836fd
1 changed files with 6 additions and 2 deletions
|
@ -130,8 +130,12 @@ if (Meteor.isServer) {
|
|||
}
|
||||
}
|
||||
if (activity.boardId) {
|
||||
if (board.title.length > 0) {
|
||||
params.board = board.title;
|
||||
if (board.title) {
|
||||
if (board.title.length > 0) {
|
||||
params.board = board.title;
|
||||
} else {
|
||||
params.board = '';
|
||||
}
|
||||
} else {
|
||||
params.board = '';
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue