()
| 1878 | channel.resolveparent(this); |
| 1879 | const par = this.localuser.channels.get(channel.parentId as string); |
| 1880 | par?.createguildHTML(); |
| 1881 | } else { |
| 1882 | this.loadChannel(); |
| 1883 | } |
| 1884 | } |
| 1885 | this.localuser.goToChannel(threadId); |
| 1886 | } |
| 1887 | getHTML() { |
| 1888 | const sideContainDiv = document.getElementById("sideContainDiv"); |
| 1889 | if (sideContainDiv) { |
| 1890 | sideContainDiv.classList.remove("searchDiv"); |
| 1891 | sideContainDiv.classList.remove("hideSearchDiv"); |
| 1892 | } |
| 1893 | const searchBox = document.getElementById("searchBox"); |
| 1894 | if (searchBox) searchBox.textContent = ""; |
| 1895 | |
| 1896 | //this.printServers(); |
| 1897 | this.sortchannels(); |
| 1898 | this.printServers(); |
| 1899 | const build = document.createElement("div"); |
| 1900 | |
| 1901 | for (const thing of this.headchannels) { |
no test coverage detected