A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: add missing undefined check

+1 -1
+1 -1
src/themes/webamp/browser/element.js
··· 123 123 * @param {RenderArg} _ 124 124 */ 125 125 render({ html }) { 126 - const isLoading = this.$output.value?.tracks.state() !== "loaded" || 126 + const isLoading = this.$output.value?.tracks?.state() !== "loaded" || 127 127 this.$search.value?.cacheId() === ""; 128 128 const tracks = this.#searchResults.value; 129 129