Index: trunk/extensions/LiquidThreads/classes/NewMessagesController.php |
— | — | @@ -141,7 +141,7 @@ |
142 | 142 | if ( $oldPrefCompat ) { |
143 | 143 | $decodedOptions = self::decodeUserOptions( $row->user_options ); |
144 | 144 | |
145 | | - $wantsTalkNotification = ( is_null( $decodedOptions['lqtnotifytalk'] ) && |
| 145 | + $wantsTalkNotification = ( ( !isset( $decodedOptions['lqtnotifytalk'] ) || is_null( $decodedOptions['lqtnotifytalk'] ) ) && |
146 | 146 | User::getDefaultOption( 'lqtnotifytalk' ) ) || $row->up_value; |
147 | 147 | } else { |
148 | 148 | $wantsTalkNotification = |