1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-30 02:21:17 +03:00

Merge pull request #985 from matrix-org/t3chguy/electron_flash

add concept of platform handling loudNotifications (bings/pings/whatHaveYou)
This commit is contained in:
Matthew Hodgson
2017-06-01 00:08:46 +01:00
committed by GitHub
2 changed files with 4 additions and 0 deletions

View File

@ -71,6 +71,9 @@ export default class BasePlatform {
displayNotification(title: string, msg: string, avatarUrl: string, room: Object) {
}
loudNotification(ev: Event, room: Object) {
}
/**
* Returns a promise that resolves to a string representing
* the current version of the application.

View File

@ -250,6 +250,7 @@ const Notifier = {
this._displayPopupNotification(ev, room);
}
if (actions.tweaks.sound && this.isAudioEnabled()) {
PlatformPeg.get().loudNotification(ev, room);
this._playAudioNotification(ev, room);
}
}