diff options
| author | theguymadmax <171496228+theguymadmax@users.noreply.github.com> | 2026-03-30 14:08:06 -0400 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2026-03-30 14:08:06 -0400 |
| commit | 2134ea3f7fd12ef9bd7b5881cedb84484c6f56d2 (patch) | |
| tree | 5678e197bce0be8a13dbaef175a680f90943167f | |
| parent | 42e8a780ca937b0f49b5e61b60adfda4abd465ec (diff) | |
Backport pull request #16514 from jellyfin/release-10.11.z
Fix lint issue
Original-merge: e1691e649e8431d080e1d1bc0aacbc2e6198f371
Merged-by: joshuaboniface <joshua@boniface.me>
Backported-by: Bond_009 <bond.009@outlook.com>
| -rw-r--r-- | src/Jellyfin.Drawing.Skia/SkiaEncoder.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Jellyfin.Drawing.Skia/SkiaEncoder.cs b/src/Jellyfin.Drawing.Skia/SkiaEncoder.cs index ade993d92..babab57d5 100644 --- a/src/Jellyfin.Drawing.Skia/SkiaEncoder.cs +++ b/src/Jellyfin.Drawing.Skia/SkiaEncoder.cs @@ -138,7 +138,7 @@ public class SkiaEncoder : IImageEncoder /// <summary> /// Initialize the list of typefaces /// We have to statically build a list of typefaces because MatchCharacter only accepts a single character or code point - /// But in reality a human-readable character (grapheme cluster) could be multiple code points. For example, 🚵🏻♀️ is a single emoji but 5 code points (U+1F6B5 + U+1F3FB + U+200D + U+2640 + U+FE0F) + /// But in reality a human-readable character (grapheme cluster) could be multiple code points. For example, 🚵🏻♀️ is a single emoji but 5 code points (U+1F6B5 + U+1F3FB + U+200D + U+2640 + U+FE0F). /// </summary> /// <returns>The list of typefaces.</returns> private static SKTypeface?[] InitializeTypefaces() |
