diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-09-20 23:18:00 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-09-20 23:18:00 +0200 |
commit | 6d89edc4f772b10b61f9747482a155666077f20b (patch) | |
tree | 6863d30c30851718f9181e4e17e96f069f1348f3 /app/assets/javascripts/components/containers | |
parent | 1d2856c2afb6f3e54e15fe34da3c167c29d4f47a (diff) |
Fix #47 by renaming TIMELINE_SET action to TIMELINE_REFRESH_SUCCESS
Diffstat (limited to 'app/assets/javascripts/components/containers')
-rw-r--r-- | app/assets/javascripts/components/containers/mastodon.jsx | 31 |
1 files changed, 18 insertions, 13 deletions
diff --git a/app/assets/javascripts/components/containers/mastodon.jsx b/app/assets/javascripts/components/containers/mastodon.jsx index ba6e568ac..5f691b4bc 100644 --- a/app/assets/javascripts/components/containers/mastodon.jsx +++ b/app/assets/javascripts/components/containers/mastodon.jsx @@ -1,15 +1,20 @@ -import { Provider } from 'react-redux'; -import configureStore from '../store/configureStore'; -import { setTimeline, updateTimeline, deleteFromTimelines, refreshTimeline } from '../actions/timelines'; -import { setAccessToken } from '../actions/meta'; -import { setAccountSelf } from '../actions/accounts'; -import PureRenderMixin from 'react-addons-pure-render-mixin'; -import { Router, Route, hashHistory } from 'react-router'; -import Account from '../features/account'; -import Settings from '../features/settings'; -import Status from '../features/status'; -import Subscriptions from '../features/subscriptions'; -import UI from '../features/ui'; +import { Provider } from 'react-redux'; +import configureStore from '../store/configureStore'; +import { + refreshTimelineSuccess, + updateTimeline, + deleteFromTimelines, + refreshTimeline +} from '../actions/timelines'; +import { setAccessToken } from '../actions/meta'; +import { setAccountSelf } from '../actions/accounts'; +import PureRenderMixin from 'react-addons-pure-render-mixin'; +import { Router, Route, hashHistory } from 'react-router'; +import Account from '../features/account'; +import Settings from '../features/settings'; +import Status from '../features/status'; +import Subscriptions from '../features/subscriptions'; +import UI from '../features/ui'; const store = configureStore(); @@ -29,7 +34,7 @@ const Mastodon = React.createClass({ for (var timelineType in this.props.timelines) { if (this.props.timelines.hasOwnProperty(timelineType)) { - store.dispatch(setTimeline(timelineType, JSON.parse(this.props.timelines[timelineType]))); + store.dispatch(refreshTimelineSuccess(timelineType, JSON.parse(this.props.timelines[timelineType]))); } } |