(msg)
| 326 | } |
| 327 | |
| 328 | onDecryptFailed(msg) { |
| 329 | const error = { |
| 330 | title: l10n.map.waiting_dialog_decryption_failed, |
| 331 | message: (msg.error) ? msg.error.message : l10n.map.waiting_dialog_decryption_failed, |
| 332 | type: 'error' |
| 333 | }; |
| 334 | this.showNotification(error); |
| 335 | } |
| 336 | |
| 337 | onErrorMessage(msg) { |
| 338 | if (msg.error.code === 'PWD_DIALOG_CANCEL') { |
nothing calls this directly
no outgoing calls
no test coverage detected