Browse Source

channel id in url

master
Pheuw1 2 years ago
parent
commit
05c0d921c0
  1. 2
      front/volume/src/App.svelte

2
front/volume/src/App.svelte

@ -167,7 +167,7 @@
let selectedChannel: ChannelsType; let selectedChannel: ChannelsType;
const handleSelectChannel = (channel: ChannelsType) => { const handleSelectChannel = (channel: ChannelsType) => {
selectedChannel = channel; selectedChannel = channel;
setAppState(APPSTATE.CHANNELS + "#" + channel.name); setAppState(APPSTATE.CHANNELS + "#" + channel.id);
}; };
// GAME // GAME

Loading…
Cancel
Save