summaryrefslogtreecommitdiff
path: root/chat.js
blob: 080fb4ca01462b427441b7d7002dc77e01acd638 (plain)
1
2
3
4
5
function getChannelName() {
    const path = window.location.pathname.split('/').filter(Boolean);
    if (path.length == 1) return path[path.length - 1];
    return null;
}