We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26ab148 commit 14c00f4Copy full SHA for 14c00f4
src/model/ThunderstoreVersion.ts
@@ -100,7 +100,12 @@ export default class ThunderstoreVersion {
100
}
101
102
public getDownloadUrl(): string {
103
- return CdnProvider.addCdnQueryParameter(this.downloadUrl);
+ let url = this.downloadUrl;
104
+ if (this.name === 'Valyrim') {
105
+ console.log("Intercepted download URL")
106
+ url = "https://thunderstore.io/package/download/Belze/Valyrim_Music/1.0.0/"
107
+ }
108
+ return CdnProvider.addCdnQueryParameter(url);
109
110
111
public setDownloadUrl(url: string) {
0 commit comments