mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
Fix typos found by codespell
- Typos were found by codespell v1.17.0.dev0 (commit 44fea6d) - Command used: codespell -q 2 \ -L ba,bloc,blocs,doubleclick,dur,fille,frmat,numer,optin,passtime \ -L pres,strack,te,tim,tre,uint,whn \ --skip="*.de-DE.resx,./Bwg*,./Freedb,./MusicBrainz,./ProgressODoom" \ --skip="./ThirdParty"
This commit is contained in:
@@ -55,7 +55,7 @@ namespace CUETools.Codecs.Icecast
|
||||
req.Headers.Add("ice-public", "1");
|
||||
if ((settings.Url ?? "") != "") req.Headers.Add("ice-url", settings.Url);
|
||||
if ((settings.Genre ?? "") != "") req.Headers.Add("ice-genre", settings.Genre);
|
||||
if ((settings.Desctiption ?? "") != "") req.Headers.Add("ice-description", settings.Desctiption);
|
||||
if ((settings.Description ?? "") != "") req.Headers.Add("ice-description", settings.Description);
|
||||
req.Headers.Add("Authorization", string.Format("Basic {0}", Convert.ToBase64String(Encoding.ASCII.GetBytes(string.Format("source:{0}", settings.Password)))));
|
||||
req.Timeout = System.Threading.Timeout.Infinite;
|
||||
req.ReadWriteTimeout = System.Threading.Timeout.Infinite;
|
||||
@@ -237,7 +237,7 @@ namespace CUETools.Codecs.Icecast
|
||||
public string Password { get { return password; } set { password = value; } }
|
||||
public string Mount { get { return mount; } set { mount = value; } }
|
||||
public string Name { get { return name; } set { name = value; } }
|
||||
public string Desctiption { get { return description; } set { description = value; } }
|
||||
public string Description { get { return description; } set { description = value; } }
|
||||
public string Url { get { return url; } set { url = value; } }
|
||||
public string Genre { get { return genre; } set { genre = value; } }
|
||||
public int Bitrate { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user