|
@@ -1,6 +1,6 @@
|
1
|
1
|
/* @flow */
|
2
|
2
|
|
3
|
|
-import { Share } from 'react-native';
|
|
3
|
+import { NativeModules, Share } from 'react-native';
|
4
|
4
|
|
5
|
5
|
import { MiddlewareRegistry } from '../base/redux';
|
6
|
6
|
|
|
@@ -37,7 +37,7 @@ function _shareRoom(roomURL: string, dispatch: Function) {
|
37
|
37
|
// review before i18n was introduces in react/. However, I reviewed it
|
38
|
38
|
// afterwards. Translate the display/human-readable strings.
|
39
|
39
|
const message = `Click the following link to join the meeting: ${roomURL}`;
|
40
|
|
- const title = 'Jitsi Meet Conference';
|
|
40
|
+ const title = `${NativeModules.AppInfo.name} Conference`;
|
41
|
41
|
const onFulfilled
|
42
|
42
|
= (shared: boolean) => dispatch(endShareRoom(roomURL, shared));
|
43
|
43
|
|