You'll have to update your logs manually (or using a script) to get these working the way you want. Sorry about that, it's annoying I know.
FIND AND REPLACE (MANUAL)
Open your log file, the first line or two will have a single entry that points to http://play.sindome.org/css/client.css
Change /css/ to /legacy/ which should give you text that looks like http://play.sindome.org/legacy/client.css and save the file. That should fix the styles for your log. Do this for any logs you want.
For those with a lot of logs… consider a more automated solution.
GNU SED (COMMAND LINE)
If you are command line capable and running MAC or LINUX, you can run sed with something like this:
sed -i -e 's#css/client.css#legacy/client.css#g' buffer.111620202055.html
CHATGPT (get the AI to write a script for you)
If you want to have something automated, you could copy (yes copy, in case something breaks) your logs into a new directory, and then pull up ChatGPT. Tell it your operating system, that you have a directory full of .html files that contain /css/client.css and you want to update that text to /legacy/client.css for all the files in a directory. Ask it to write you a script that will do that for you, and see if you can run it. Happy to help debug issues in this thread if people have them.
