This commit is contained in:
2023-08-06 14:39:41 +03:00
parent a40a3602b8
commit 7f2db62c47

View File

@@ -23,3 +23,11 @@ function show_inf_carrier (el) {
}
function open_chat (user_id){
event.preventDefault()
let host = window.location.origin
let user_id_ = user_id.toString()
let href = host + '/ru/profile/chat/' + user_id_
// window.location.href = host + '/profile/chat/' + user_id
window.location.replace(href)
}