This repository was archived by the owner on Sep 11, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +18
-3
lines changed
src/components/structures Expand file tree Collapse file tree 3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change
1
+ Changes in [ 0.9.0] ( https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.9.0 ) (2017-06-02)
2
+ ===================================================================================================
3
+ [ Full Changelog] ( https://github.com/matrix-org/matrix-react-sdk/compare/v0.9.0-rc.2...v0.9.0 )
4
+
5
+ * sync pt with pt_BR
6
+ [ \# 1009] ( https://github.com/matrix-org/matrix-react-sdk/pull/1009 )
7
+ * Update from Weblate.
8
+ [ \# 1008] ( https://github.com/matrix-org/matrix-react-sdk/pull/1008 )
9
+ * Update from Weblate.
10
+ [ \# 1003] ( https://github.com/matrix-org/matrix-react-sdk/pull/1003 )
11
+ * allow hiding redactions, restoring old behaviour
12
+ [ \# 1004] ( https://github.com/matrix-org/matrix-react-sdk/pull/1004 )
13
+ * Add missing translations
14
+ [ \# 1005] ( https://github.com/matrix-org/matrix-react-sdk/pull/1005 )
15
+
1
16
Changes in [ 0.9.0-rc.2] ( https://github.com/matrix-org/matrix-react-sdk/releases/tag/v0.9.0-rc.2 ) (2017-06-02)
2
17
=============================================================================================================
3
18
[ Full Changelog] ( https://github.com/matrix-org/matrix-react-sdk/compare/v0.9.0-rc.1...v0.9.0-rc.2 )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " matrix-react-sdk" ,
3
- "version" : " 0.9.0-rc.2 " ,
3
+ "version" : " 0.9.0" ,
4
4
"description" : " SDK for matrix.org using React" ,
5
5
"author" : " matrix.org" ,
6
6
"repository" : {
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ import PageTypes from '../../PageTypes';
38
38
39
39
import createRoom from "../../createRoom" ;
40
40
import * as UDEHandler from '../../UnknownDeviceErrorHandler' ;
41
- import { _t } from '../../languageHandler' ;
41
+ import { _t , getCurrentLanguage } from '../../languageHandler' ;
42
42
43
43
module . exports = React . createClass ( {
44
44
displayName : 'MatrixChat' ,
@@ -795,7 +795,7 @@ module.exports = React.createClass({
795
795
this . _teamToken = teamToken ;
796
796
dis . dispatch ( { action : 'view_home_page' } ) ;
797
797
} else if ( this . _is_registered ) {
798
- if ( this . props . config . welcomeUserId ) {
798
+ if ( this . props . config . welcomeUserId && getCurrentLanguage ( ) . startsWith ( "en" ) ) {
799
799
createRoom ( { dmUserId : this . props . config . welcomeUserId } ) ;
800
800
return ;
801
801
}
You can’t perform that action at this time.
0 commit comments