Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian 559dc21189 0.42.22 2026-01-23 02:59:22 +01:00
DebaucheryLibrarian 7fdb915921 Not using parent affiliate URL for networks. 2026-01-23 02:59:20 +01:00
3 changed files with 4 additions and 4 deletions

4
package-lock.json generated
View File

@ -1,11 +1,11 @@
{ {
"name": "traxxx-web", "name": "traxxx-web",
"version": "0.42.21", "version": "0.42.22",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"version": "0.42.21", "version": "0.42.22",
"dependencies": { "dependencies": {
"@brillout/json-serializer": "^0.5.8", "@brillout/json-serializer": "^0.5.8",
"@dicebear/collection": "^7.0.5", "@dicebear/collection": "^7.0.5",

View File

@ -87,7 +87,7 @@
"overrides": { "overrides": {
"vite": "$vite" "vite": "$vite"
}, },
"version": "0.42.21", "version": "0.42.22",
"imports": { "imports": {
"#/*": "./*.js" "#/*": "./*.js"
} }

View File

@ -54,7 +54,7 @@ export function getAffiliateEntityUrl(entity) {
return entity.affiliate.url; return entity.affiliate.url;
} }
if (entity.isIndependent) { if (entity.type === 'network' || entity.isIndependent) {
return entity.url; return entity.url;
} }