File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 12
12
- fixed: Crud updateFromFormPost
13
13
- fixed: encryptLogin and sslEnabled both need to be true
14
14
- fixed: Cache's setByHTTP method returns content, even when it gets an error in the request. This gives the SC asset fits.
15
+ - fixed #12349: Friends invitation error
15
16
16
17
7.10.24
17
18
- fixed #12318: asset error causes asset manager to fail
Original file line number Diff line number Diff line change @@ -320,7 +320,10 @@ sub rejectAddRequest {
320
320
status => ' unread' ,
321
321
});
322
322
}
323
- $inbox -> getMessage($invite -> {messageId })-> setStatus(' completed' );
323
+ my $invitation = $inbox -> getMessage($invite -> {messageId });
324
+ if ($invitation ) {
325
+ $invitation -> setStatus(' completed' );
326
+ }
324
327
$self -> session-> db-> deleteRow(" friendInvitations" , " inviteId" , $inviteId );
325
328
}
326
329
You can’t perform that action at this time.
0 commit comments