From 328da08b3aa3032050762edc6691e5dcfe9c7901 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Fri, 25 Aug 2017 12:00:23 +0200 Subject: [PATCH] [RN] Remove obsolete comment We have already made the implicit decision not to pursue what the comment describes. If we ever revisit it, it probably won't be handled where the comment is anyway. --- react/features/app/actions.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/react/features/app/actions.js b/react/features/app/actions.js index 43731027d..8fa050e89 100644 --- a/react/features/app/actions.js +++ b/react/features/app/actions.js @@ -37,11 +37,6 @@ export function appNavigate(uri: ?string) { function _appNavigateToMandatoryLocation( dispatch: Dispatch<*>, getState: Function, newLocation: Object) { - // TODO Kostiantyn Tsaregradskyi: We should probably detect if user is - // currently in a conference and ask her if she wants to close the - // current conference and start a new one with the new room name or - // domain. - const oldLocationURL = getState()['features/base/connection'].locationURL; const oldHost = oldLocationURL ? oldLocationURL.host : undefined; const newHost = newLocation.host;