about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/reducers/polls.js
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2019-08-31 12:53:10 +0200
committerThibaut Girka <thib@sitedethib.com>2019-08-31 18:23:24 +0200
commit682cfbb829fe9e3a701dfd1dc3b1ab0b117f9208 (patch)
treea5b7fe3b66514d62d1c1dbc11f36afc48b0ce81c /app/javascript/flavours/glitch/reducers/polls.js
parentcd46099e4939807af05b2ca1c8800d6a956d691b (diff)
Fix imports importing modules from vanilla flavour instead of glitch
Diffstat (limited to 'app/javascript/flavours/glitch/reducers/polls.js')
-rw-r--r--app/javascript/flavours/glitch/reducers/polls.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/reducers/polls.js b/app/javascript/flavours/glitch/reducers/polls.js
index 9956cf83f..595f340bc 100644
--- a/app/javascript/flavours/glitch/reducers/polls.js
+++ b/app/javascript/flavours/glitch/reducers/polls.js
@@ -1,4 +1,4 @@
-import { POLLS_IMPORT } from 'mastodon/actions/importer';
+import { POLLS_IMPORT } from 'flavours/glitch/actions/importer';
 import { Map as ImmutableMap, fromJS } from 'immutable';
 
 const importPolls = (state, polls) => state.withMutations(map => polls.forEach(poll => map.set(poll.id, fromJS(poll))));