diff --git a/app/sagas/deepLinking.js b/app/sagas/deepLinking.js
index 04eccfca946941da694aef758f7eaa9973670c02..892731602629bce78707ba889e5182368c78fd72 100644
--- a/app/sagas/deepLinking.js
+++ b/app/sagas/deepLinking.js
@@ -11,6 +11,7 @@ import database from '../lib/realm';
 import RocketChat from '../lib/rocketchat';
 import EventEmitter from '../utils/events';
 import { appStart } from '../actions';
+import { isIOS } from '../utils/deviceInfo';
 
 const roomTypes = {
 	channel: 'c', direct: 'd', group: 'p'
@@ -33,6 +34,10 @@ const handleOpen = function* handleOpen({ params }) {
 		return;
 	}
 
+	if (isIOS) {
+		yield RNUserDefaults.setName('group.ios.chat.rocket');
+	}
+
 	let { host } = params;
 	if (!/^(http|https)/.test(host)) {
 		host = `https://${ params.host }`;