|
@@ -14,6 +14,7 @@ import {
|
14
|
14
|
import {
|
15
|
15
|
potentialTranscriberJoined,
|
16
|
16
|
showPendingTranscribingNotification,
|
|
17
|
+ showStartedTranscribingNotification,
|
17
|
18
|
showStoppedTranscribingNotification,
|
18
|
19
|
transcriberJoined,
|
19
|
20
|
transcriberLeft
|
|
@@ -37,6 +38,8 @@ MiddlewareRegistry.register(({ dispatch, getState }) => next => action => {
|
37
|
38
|
|
38
|
39
|
switch (action.type) {
|
39
|
40
|
case _TRANSCRIBER_JOINED: {
|
|
41
|
+ dispatch(showStartedTranscribingNotification());
|
|
42
|
+
|
40
|
43
|
const state = getState();
|
41
|
44
|
const { transcription } = state['features/base/config'];
|
42
|
45
|
const { _requestingSubtitles } = state['features/subtitles'];
|