Skip to content

Commit

Permalink
Fix once again
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirKhil committed Nov 12, 2023
1 parent b0e93e5 commit 98488c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SICore/SICore/Clients/Game/GameLogic.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4686,8 +4686,8 @@ internal void OnComplexContent(Dictionary<string, List<ContentItem>> contentTabl
}
else
{
messageBuilder.Add(contentItem.Type).Add(MessageParams.Atom_Uri).Add(globalUri);
legacyBuilder.Add(contentItem.Type == ContentTypes.Audio ? AtomTypes.Audio : contentItem.Type).Add(globalUri);
messageBuilder.Add(contentItem.Type).Add(globalUri);
legacyBuilder.Add(contentItem.Type == ContentTypes.Audio ? AtomTypes.Audio : contentItem.Type).Add(MessageParams.Atom_Uri).Add(globalUri);

if ((contentItem.Type == ContentTypes.Audio || contentItem.Type == ContentTypes.Video) && !registeredMediaPlay)
{
Expand Down

0 comments on commit 98488c4

Please sign in to comment.