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: Forgot to transform url when creating audio element

+3 -2
+1 -1
src-tauri/Cargo.lock
··· 810 810 811 811 [[package]] 812 812 name = "diffuse" 813 - version = "3.4.0" 813 + version = "3.5.0" 814 814 dependencies = [ 815 815 "serde_json", 816 816 "tauri",
+2 -1
src/Javascript/UI/audio.ts
··· 8 8 import { debounce } from "throttle-debounce" 9 9 import { CoverPrep, db, mimeType } from "../common" 10 10 import { albumCover, loadAlbumCovers } from "./artwork" 11 + import { transformUrl } from "../urls" 11 12 12 13 13 14 // 🏔️ ··· 352 353 ? await db("tracks") 353 354 .getItem(item.trackId) 354 355 .then((blob) => (blob ? URL.createObjectURL(blob as Blob) : item.url)) 355 - : item.url 356 + : await transformUrl(item.url, app) 356 357 357 358 // Mime + SRC 358 359 const fileName = item.trackPath.split("/").reverse()[0]