Skip to content
Snippets Groups Projects
Commit 54c05b5f authored by Torsten Grote's avatar Torsten Grote
Browse files

Merge branch '1606-bump-client-minor-version' into 'master'

Bump client minor version to avoid triggering crash

Closes #1606

See merge request !1150
parents 4fd012c3 d145a082
No related branches found
No related tags found
1 merge request!1150Bump client minor version to avoid triggering crash
Pipeline #3637 canceled
......@@ -30,7 +30,7 @@ public interface MessagingManager extends ConversationClient {
/**
* The current minor version of the messaging client.
*/
int MINOR_VERSION = 1;
int MINOR_VERSION = 2;
/**
* Stores a local private message.
......
......@@ -65,7 +65,7 @@ public class MessagingModule {
conversationManager.registerConversationClient(messagingManager);
// Advertise the current or previous minor version depending on the
// feature flag
int minorVersion = featureFlags.shouldEnableImageAttachments() ? 1 : 0;
int minorVersion = featureFlags.shouldEnableImageAttachments() ? 2 : 0;
clientVersioningManager.registerClient(CLIENT_ID, MAJOR_VERSION,
minorVersion, messagingManager);
return messagingManager;
......
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