Don't immediately remove notifications from notification trays

Let the notifications go into browser/OS notification trays so users can click on them from there if they miss the initial notification. Modern Chrome uses OS notifications so the user is in control of the the notification with the OS. This also aligns with the Electron platform version.

Signed-off-by: Matthew Noorenberghe <github@matthew.noorenberghe.com>
pull/12861/head
Matt N 2020-03-24 17:27:14 -07:00 committed by GitHub
parent c10732736c
commit b8ca1f920e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 6 deletions

View File

@ -91,12 +91,6 @@ export default class WebPlatform extends VectorBasePlatform {
global.focus();
notification.close();
};
// Chrome only dismisses notifications after 20s, which
// is waaaaay too long
global.setTimeout(function() {
notification.close();
}, 5 * 1000);
}
_getVersion(): Promise<string> {