Skip to content

Commit

Permalink
Update time separator in smallNumbersContent string
Browse files Browse the repository at this point in the history
The commit updates the formatting of the `smallNumbersContent` string in the `OSCController.cs` file, under the `vrcosc_magicchatbox.Classes.DataAndSecurity` namespace. The change involves replacing the colon (":") that separated `currentTime` and `fullTime` values with a vertical bar ("l"). This alteration affects the visual representation of the time span in the `smallNumbersContent` string, but does not impact the functionality of the code.
  • Loading branch information
BoiHanny committed May 31, 2024
1 parent cbcfe42 commit dd1e0ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ private static string CreateTimeStamp(string x, MediaSessionInfo mediaSession, M
break;

case MediaLinkTimeSeekbar.SmallNumbers:
string smallNumbersContent = $"{DataController.TransformToSuperscript(FormatTimeSpan(currentTime) + " : " + FormatTimeSpan(fullTime))}";
string smallNumbersContent = $"{DataController.TransformToSuperscript(FormatTimeSpan(currentTime) + " l " + FormatTimeSpan(fullTime))}";
if (CalculateOSCMsgLength(uncomplete, x + smallNumbersContent) <= 140)
{
return x + " " + smallNumbersContent;
Expand Down

0 comments on commit dd1e0ff

Please sign in to comment.