Steam website does not play videos

For support with specific websites

Moderator: trava90

Forum rules
Please always mention the name/domain of the website in question in your topic title.
Please one website per topic thread (to help keep things organized). While behavior on different sites might at first glance seem similar, they are not necessarily caused by the same.

Please try to include any relevant output from the Toolkit Error Console or the Developer Tools Web Console using the following procedure:
  1. Clear any current output
  2. Navigate or refresh the page in question
  3. Copy and paste Errors or seemingly relevant Warnings into a single [ code ] block.
User avatar
Rudd_T
Moongazer
Moongazer
Posts: 9
Joined: 2020-10-31, 12:38

Steam website does not play videos

Unread post by Rudd_T » 2022-04-14, 08:45

Hello

Since last update 29.4.6
Steam website stopped to play videos i cant even change pictures in slide show below video. It is just black screen inside video section

https://store.steampowered.com/app/9202 ... lker_Saga/

There is no log available as there is no error report

User avatar
franstam
Moon lover
Moon lover
Posts: 88
Joined: 2017-03-27, 10:16

Re: Steam website does not play videos

Unread post by franstam » 2022-04-15, 10:39

hmmm not sure whats the exact error message thats causing this.

i'm also facing issue that the video box is completely black and it was working last i checked

Code: Select all


18:35:16.637 Use of getPreventDefault() is deprecated.  Use defaultPrevented instead.  
jquery-1.8.3.min.js:2:40351
18:35:19.472 SyntaxError: expected expression, got '.'[Learn More]  
game.js:449:6
18:35:22.183 ReferenceError: CollapseLongStrings is not defined[Learn More]  
LEGO_Star_Wars_The_Skywalker_Saga:438:3
18:36:11.207 Use of getPreventDefault() is deprecated.  Use defaultPrevented instead.  
jquery-1.8.3.min.js:2:40351

User avatar
FranklinDM
Add-ons Team
Add-ons Team
Posts: 582
Joined: 2017-01-14, 02:40
Location: Philippines

Re: Steam website does not play videos

Unread post by FranklinDM » 2022-04-15, 11:10

Looks like the folks at Valve are now using optional chaining. Since they're not minifying the source, the offending code can be seen below:

Code: Select all

function ShowEULA( elLink )
{
	var bSupportTabletMode = window.SupportTabletScreenMode && window.SupportTabletScreenMode(); 
	if ( bSupportTabletMode )
	{
		// it's a better user experience on Deck if we navigate to the EULA instead of opening a new window
		window.location = elLink.href;
	}
	else 
	{
		var win = window.open( elLink.href,'eula','height=584,width=475,resize=yes,scrollbars=yes');
		win?.focus();
	}
}

User avatar
Moonchild
Pale Moon guru
Pale Moon guru
Posts: 35650
Joined: 2011-08-28, 17:27
Location: Motala, SE

Re: Steam website does not play videos

Unread post by Moonchild » 2022-04-15, 12:22

I've already reported this to them but if other people want to do so as well would be nice. volume speaks for these companies.
"Sometimes, the best way to get what you want is to be a good person." -- Louis Rossmann
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite

User avatar
dtoxic
Moon lover
Moon lover
Posts: 94
Joined: 2017-10-04, 00:14
Location: Tau Ceti

Re: Steam website does not play videos

Unread post by dtoxic » 2022-04-22, 13:55

I assume there are no temp. workarounds for this problem?
Windows 7 SP1 X64
Windows 10 LTSC X64

User avatar
Moonchild
Pale Moon guru
Pale Moon guru
Posts: 35650
Joined: 2011-08-28, 17:27
Location: Motala, SE

Re: Steam website does not play videos

Unread post by Moonchild » 2022-04-23, 01:05

dtoxic wrote:
2022-04-22, 13:55
I assume there are no temp. workarounds for this problem?
No, because it introduces ambiguity in the parser (what a "?" token is supposed to mean) and there's no real way that I know of to modify parts of the parser on the fly like that.
Perhaps loaded js can be pre-processed with an extension but it's not always straight-forward what ?. expressions should be replaced with.
"Sometimes, the best way to get what you want is to be a good person." -- Louis Rossmann
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite

User avatar
dtoxic
Moon lover
Moon lover
Posts: 94
Joined: 2017-10-04, 00:14
Location: Tau Ceti

Re: Steam website does not play videos

Unread post by dtoxic » 2022-04-23, 08:06

ok...thx for the explanation,guess we will have to wait for steam to sort this out
Windows 7 SP1 X64
Windows 10 LTSC X64