Compare commits

...

1 Commits

Author SHA1 Message Date
min
89720f5e85 fix(skin): cache-bust query ?v=20260614 for character-assets URLs
All checks were successful
CI / Lint (pull_request) Successful in 1m9s
CI / Build (pull_request) Successful in 1m57s
CI / Secret scan (pull_request) Successful in 23s
CI / PR size check (pull_request) Successful in 7s
CI / Deploy to S1 + S2 (pull_request) Has been skipped
After backend CORS rollout users had stale CORS-failure cached for
Mixamo GLB. Adding a query suffix forces browsers to re-fetch the URL
instead of replaying the cached failure.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-14 16:31:31 +03:00

View File

@ -687,7 +687,7 @@ export class PlayerController {
? 'http://localhost:3000' ? 'http://localhost:3000'
: 'https://rublox.pro'; : 'https://rublox.pro';
return { return {
file: `${base}/character-assets/skins/${typeId}.glb`, file: `${base}/character-assets/skins/${typeId}.glb?v=20260614`,
isR15: false, isR15: false,
kind: 'non-humanoid-rigged', kind: 'non-humanoid-rigged',
overrides: {}, overrides: {},