Commit 04c71b37 by Kim Peace

Merge branch 'bug/#43970_name_card_group_selected' into 'develop'

Fixed to response namecard group

See merge request !234
parents e656af13 b6a6c8de
......@@ -113,12 +113,15 @@ Namecard.refreshForOffline = function () {
Namecard.moveContactPage = function (paramGroupID) {
const groupID = paramGroupID;
if (groupID == "") return;
NativeBridgeDelegate.showLoadingIndicator();
NativeBridgeDelegate.setToMoveGroupId(groupID);
if (
window.location.pathname.includes("chat_room") ||
window.location.pathname.includes("archive_detail")
) {
if (groupID == "") return;
NativeBridgeDelegate.setToMoveGroupId(groupID);
window.location.href = "contact.html";
} else {
window.location.reload();
}
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment