Stepan Goremykin
910617bbc3
Remove redundant 'else' keywords
2 years ago
Stepan Goremykin
dabdc86a1b
Pass cancellation token
2 years ago
Stepan Goremykin
c051736c80
Inline out variable declaration
2 years ago
Cody Robibero
89be3aa37f
Convert Person.Type to use PersonKind enum ( #9487 )
2 years ago
Bond_009
d8ec3a5470
Reduce usage of GetAwaiter().GetResult()
2 years ago
gitteric
af611367c1
Fall back to using "logo" attrib if "tvg-logo" is mssing in M3U-tuner ( #9475 )
...
Co-authored-by: gitteric <you@example.com>
2 years ago
Bond-009
5b493e14ac
Improve alternate ordering ( #9336 )
2 years ago
Bond_009
b119c6d868
StringComparison.Ordinal instead of StringComparison.OrdinalIgnoreCase
2 years ago
Bond_009
24a7e210c3
Optimize tryparse
...
* Don't check for null before
* Don't try different formats when not needed (NumberFormat.Integer is the fast path)
2 years ago
Cody Robibero
32eccc139c
LiveTV fixes
2 years ago
Bond_009
65d605b17d
Improve ffprobe json parsing and don't log error for Codec Type attachment
2 years ago
Bond-009
43c3a465e6
Merge pull request #8775 from SenorSmartyPants/DVRMetadata
...
Fixes https://github.com/jellyfin/jellyfin/issues/5178
2 years ago
Bond_009
6481376b81
Use DistinctBy introduced in .NET 6
2 years ago
Bond_009
b366dc2e6e
Use ArgumentException.ThrowIfNullOrEmpty
2 years ago
Bond_009
52194f56b5
Replace != null with is not null
2 years ago
Bond_009
c7d50d640e
Replace == null with is null
2 years ago
Bond-009
210a4921f2
Fix some warnings and only disable TreatWarningsAsErrors for CodeAnalysis ( #8709 )
2 years ago
SenorSmartyPants
8f4ac1cb81
Call GetConfiguration just once in function
2 years ago
SenorSmartyPants
75c96e6e76
DVR: Prefer HD channels then earliest showing when handling duplicate showings. ( #8768 )
...
Co-authored-by: Bond-009 <bond.009@outlook.com>
2 years ago
SenorSmartyPants
159a244654
Add Options to disable DVR NFO and image saving
...
- SaveRecordingNFO and SaveRecordingImages default to true. Maintains current behavior.
- Episode.FillMissingEpisodeNumbersFromPath for live tv so external metadata can be pulled when recording starts.
2 years ago
SenorSmartyPants
b5f9a093dd
Don't cancel DVR recordings when adjusting settings ( #8752 )
...
Fixes https://github.com/jellyfin/jellyfin/issues/3523
2 years ago
Michael Powers
84d1b07849
Fix incorrect starting offset of buffer span in CheckTunerAvailability.
...
Resolves #7154
2 years ago
Bond_009
ba3e7027fe
Add regression test for #8696
2 years ago
Cody Robibero
55c115b7b1
Don't throw exception if program.Title is null
2 years ago
Anthony Lavado
f9221c9a64
Backport pull request #8609 from jellyfin/release-10.8.z
...
Use Token for SchedulesDirect Images and Image Index
Original-merge: a6740bf51e
Merged-by: Anthony Lavado <anthonylavado@me.com>
Backported-by: Joshua M. Boniface <joshua@boniface.me>
2 years ago
Bond_009
6a6ea7fa13
Switch branches if statement
2 years ago
Bond_009
f6af28cf96
Fix some things that slipped through the cracks
2 years ago
adrez99
3736e360e7
Merge branch 'jellyfin:master' into gzip
2 years ago
Aaron
d50c1b2d4b
Skip generic shows from duplicate removal actions ( #8370 )
...
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
2 years ago
Claus Vium
719e5eae16
Merge pull request #8503 from Bond-009/ThrowIfNull
2 years ago
Jan Sommer
0b8faf5db4
Fix minor warnings in Emby.Server.Implementations ( #2149 )
2 years ago
Bond_009
a9a5fcde81
Use ArgumentNullException.ThrowIfNull helper method
...
Did a simple search/replace on the whole repo (except the RSSDP project)
This reduces LOC and should improve performance (methods containing a throw statement don't get inlined)
```
if \((\w+) == null\)
\s+\{
\s+throw new ArgumentNullException\((.*)\);
\s+\}
```
```
ArgumentNullException.ThrowIfNull($1);
```
2 years ago
Bond-009
2d57e71b44
Don't allow throwing System.Exception ( #8378 )
2 years ago
Bond-009
e1e4ac75e4
Merge pull request #8267 from luzpaz/typos
2 years ago
knackebrot
c3405d25fd
Make IgnoreDts configurable for M3U tuner
2 years ago
luz paz
9ec2870b10
Fix various typos
...
Found via `codespell -q 3 -S ./Emby.Server.Implementations/Localization -L allready,doesnt,inh,receivedfrom,whoknows`
2 years ago
adrez99
72893da4d8
Use System.IO.Compression instead of SharpCompress for gzips
2 years ago
Cody Robibero
e263e9c2b1
Merge pull request #7544 from jaantaponen/long-filename-fix
...
(cherry picked from commit 8a1eca0913
)
Signed-off-by: crobibero <cody@robibe.ro>
3 years ago
Cody Robibero
2e3c5ed346
Merge pull request #7625 from crobibero/xml-cache-delete
...
(cherry picked from commit ec6f7bdcff
)
Signed-off-by: crobibero <cody@robibe.ro>
3 years ago
Cody Robibero
8203e933d5
Merge pull request #7592 from 1337joe/live-tv-fixes
...
(cherry picked from commit cd93f49fa8
)
Signed-off-by: Joshua Boniface <joshua@boniface.me>
3 years ago
Cody Robibero
435fc7ade9
Merge pull request #7567 from cvium/fix_xmltv_caching
...
(cherry picked from commit 385a0b9437
)
Signed-off-by: Joshua Boniface <joshua@boniface.me>
3 years ago
Cody Robibero
1425ef3cb4
Merge pull request #7542 from 1337joe/make-recording-stop
...
Make recording stop at scheduled stop time
(cherry picked from commit 132c85e554
)
Signed-off-by: crobibero <cody@robibe.ro>
3 years ago
Bond_009
f50a250cd9
Optimize Guid comparisons
...
* Use Guid.Equals(Guid) instead of the == override
* Ban the usage of Guid.Equals(Object) to prevent accidental boxing
* Compare to default(Guid) instead of Guid.Empty
3 years ago
Bond_009
adad13b865
Remove some dead code
3 years ago
Bond_009
5732e6188c
Fix some warnings
3 years ago
Bond_009
1c14c86b20
Fix some warnings
3 years ago
Cody Robibero
b6489e73ab
Merge pull request #7241 from Bond-009/async5
3 years ago
Cody Robibero
ea3d79c0eb
Merge pull request #7235 from Bond-009/async4
3 years ago
Cody Robibero
3c746f2743
Merge pull request #7236 from Bond-009/taskcompletionsource
3 years ago
Bond_009
e7be01d7a5
Flush to disk async where possible
3 years ago