diff options
| author | telans <telans@protonmail.com> | 2020-06-16 15:59:02 +1200 |
|---|---|---|
| committer | telans <telans@protonmail.com> | 2020-06-16 16:11:32 +1200 |
| commit | ab3dece9f1160e6f08be12796a8a952e36213da5 (patch) | |
| tree | 34cdd11ac2a284d0324f8086d0cd6c1e034f9605 | |
| parent | 247f9c61e60ef774675cb4d6d1734d2ccdc6ee7a (diff) | |
fix brace spacing for do while loops
| -rw-r--r-- | DvdLib/Ifo/Dvd.cs | 1 | ||||
| -rw-r--r-- | MediaBrowser.Providers/Plugins/MusicBrainz/AlbumProvider.cs | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/DvdLib/Ifo/Dvd.cs b/DvdLib/Ifo/Dvd.cs index 1252bab50..ca20baa73 100644 --- a/DvdLib/Ifo/Dvd.cs +++ b/DvdLib/Ifo/Dvd.cs @@ -125,7 +125,6 @@ namespace DvdLib.Ifo if (titleNum + 1 < numTitles && vtsFs.Position == (baseAddr + offsets[titleNum + 1])) break; chapNum++; } - while (vtsFs.Position < (baseAddr + endaddr)); } diff --git a/MediaBrowser.Providers/Plugins/MusicBrainz/AlbumProvider.cs b/MediaBrowser.Providers/Plugins/MusicBrainz/AlbumProvider.cs index 78b500199..bde67e66d 100644 --- a/MediaBrowser.Providers/Plugins/MusicBrainz/AlbumProvider.cs +++ b/MediaBrowser.Providers/Plugins/MusicBrainz/AlbumProvider.cs @@ -792,7 +792,6 @@ namespace MediaBrowser.Providers.Music // We retry a finite number of times, and only whilst MB is indicating 503 (throttling) } - while (attempts < MusicBrainzQueryAttempts && response.StatusCode == HttpStatusCode.ServiceUnavailable); // Log error if unable to query MB database due to throttling |
