Fix i18n streaming.js

merge-requests/44/head
Alex Gleason 4 years ago
parent 36f5b6cea8
commit 8b181c38f3
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

@ -9,14 +9,13 @@ import {
import { updateNotificationsQueue, expandNotifications } from './notifications';
import { updateConversations } from './conversations';
import { fetchFilters } from './filters';
import { getLocale } from '../locales';
const { messages } = getLocale();
import { getSettings } from 'soapbox/actions/settings';
import messages from 'soapbox/locales/messages';
export function connectTimelineStream(timelineId, path, pollingRefresh = null, accept = null) {
return connectStream (path, pollingRefresh, (dispatch, getState) => {
const locale = getState().getIn(['meta', 'locale']);
const locale = getSettings(getState()).get('locale');
return {
onConnect() {
@ -36,7 +35,7 @@ export function connectTimelineStream(timelineId, path, pollingRefresh = null, a
dispatch(deleteFromTimelines(data.payload));
break;
case 'notification':
dispatch(updateNotificationsQueue(JSON.parse(data.payload), messages, locale, window.location.pathname));
dispatch(updateNotificationsQueue(JSON.parse(data.payload), messages[locale], locale, window.location.pathname));
break;
case 'conversation':
dispatch(updateConversations(JSON.parse(data.payload)));

Loading…
Cancel
Save