Skip to content

Commit

Permalink
Fix MediaPlayer constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
josago97 authored Sep 23, 2022
1 parent b0db09f commit f9b4fc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ConsoleMediaPlayer.Common/MediaPlayer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public abstract class MediaPlayer

public MediaPlayer(string filePath)
{
if (!File.Exists(filePath)) throw new Exception($"El archivo {FilePath} no existe");
if (!File.Exists(filePath)) throw new Exception($"El archivo {filePath} no existe");

FilePath = filePath;
}
Expand Down

0 comments on commit f9b4fc7

Please sign in to comment.