Browse Source

bug fix (WebPush does not work) (#6120)

pull/4/head
MitarashiDango 6 years ago
committed by Eugen Rochko
parent
commit
511c6f9625
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      app/javascript/mastodon/actions/push_notifications/registerer.js
  2. +1
    -1
      app/javascript/mastodon/main.js

+ 1
- 1
app/javascript/mastodon/actions/push_notifications/registerer.js View File

@ -51,7 +51,7 @@ const sendSubscriptionToBackend = (subscription, me) => {
// Last one checks for payload support: https://web-push-book.gauntface.com/chapter-06/01-non-standards-browsers/#no-payload
const supportsPushNotifications = ('serviceWorker' in navigator && 'PushManager' in window && 'getKey' in PushSubscription.prototype);
export default function register () {
export function register () {
return (dispatch, getState) => {
dispatch(setBrowserSupport(supportsPushNotifications));
const me = getState().getIn(['meta', 'me']);

+ 1
- 1
app/javascript/mastodon/main.js View File

@ -1,4 +1,4 @@
import { register as registerPushNotifications } from './actions/push_notifications';
import * as registerPushNotifications from './actions/push_notifications';
import { default as Mastodon, store } from './containers/mastodon';
import React from 'react';
import ReactDOM from 'react-dom';

Loading…
Cancel
Save