Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'UVtools.Core/FileFormats/ChituboxZipFile.cs')
-rw-r--r--UVtools.Core/FileFormats/ChituboxZipFile.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/UVtools.Core/FileFormats/ChituboxZipFile.cs b/UVtools.Core/FileFormats/ChituboxZipFile.cs
index a3bd7bb..4f5c972 100644
--- a/UVtools.Core/FileFormats/ChituboxZipFile.cs
+++ b/UVtools.Core/FileFormats/ChituboxZipFile.cs
@@ -349,7 +349,7 @@ namespace UVtools.Core.FileFormats
{
using (ZipArchive outputFile = ZipFile.Open(fileFullPath, ZipArchiveMode.Create))
{
- if (Thumbnails.Length > 0 && !ReferenceEquals(Thumbnails[0], null))
+ if (Thumbnails.Length > 0 && Thumbnails[0] is not null)
{
using (Stream stream = outputFile.CreateEntry("preview.png").Open())
{
@@ -358,7 +358,7 @@ namespace UVtools.Core.FileFormats
}
}
- if (Thumbnails.Length > 1 && !ReferenceEquals(Thumbnails[1], null))
+ if (Thumbnails.Length > 1 && Thumbnails[1] is not null)
{
using (Stream stream = outputFile.CreateEntry("preview_cropping.png").Open())
{