File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -302,7 +302,7 @@ protected virtual async partial ValueTask PlatformUpdateSource()
302302 }
303303 else if ( MediaElement . Source is ResourceMediaSource resourceMediaSource )
304304 {
305- if ( string . IsNullOrWhiteSpace ( resourceMediaSource . Path ) )
305+ if ( string . IsNullOrWhiteSpace ( resourceMediaSource . Path ) )
306306 {
307307 Logger . LogInformation ( "ResourceMediaSource Path is null or empty" ) ;
308308 return ;
@@ -315,7 +315,7 @@ protected virtual async partial ValueTask PlatformUpdateSource()
315315 }
316316 }
317317 }
318-
318+
319319 protected virtual partial void PlatformUpdateShouldLoopPlayback ( )
320320 {
321321 if ( Player is null )
@@ -366,7 +366,7 @@ static string GetFullAppPackageFilePath(in string filename)
366366 var normalizedFilename = NormalizePath ( filename ) ;
367367 return Path . Combine ( AppPackageService . FullAppPackageFilePath , normalizedFilename ) ;
368368
369- static string NormalizePath ( string filename ) => filename . Replace ( '\\ ' , Path . DirectorySeparatorChar ) . Replace ( '/' , Path . DirectorySeparatorChar ) ;
369+ static string NormalizePath ( string filename ) => filename . Replace ( '\\ ' , Path . DirectorySeparatorChar ) . Replace ( '/' , Path . DirectorySeparatorChar ) ;
370370 }
371371
372372 static bool IsZero < TValue > ( TValue numericValue ) where TValue : INumber < TValue >
You can’t perform that action at this time.
0 commit comments