Skip to content
Snippets Groups Projects
Commit ef2f5653 authored by Armin Felder's avatar Armin Felder
Browse files

Merge branch '13-fix-downwardscompatiblity-rc-0-60' into 'master'

Resolve "fix downwardscompatiblity RC <0.60"

Closes #13

See merge request chat/RocketChatMobileEngine!17
parents 9d84b750 abb96b22
No related branches found
No related tags found
1 merge request!17Resolve "fix downwardscompatiblity RC <0.60"
......@@ -50,7 +50,7 @@ void DDPSubscriptionRequest::buildRequest( const QString &pCollection, const QJs
int patch = std::get<2>( RocketChatServerConfig::serverVersion );
if ( major != -1 && minor != -1 && patch != -1 ) {
if ( major >= 0 && minor > 6 ) {
if ( major >= 0 && minor > 60 ) {
params.append( obj );
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment