From 5b4e060d6cd8fb400781f4c5a25b1434f14fce97 Mon Sep 17 00:00:00 2001 From: Natsumi Date: Thu, 24 Jul 2025 20:12:24 +1200 Subject: [PATCH] Fix applying VRCX metadata to photos --- Dotnet/ScreenshotMetadata/ScreenshotHelper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dotnet/ScreenshotMetadata/ScreenshotHelper.cs b/Dotnet/ScreenshotMetadata/ScreenshotHelper.cs index ce83418c..670744be 100644 --- a/Dotnet/ScreenshotMetadata/ScreenshotHelper.cs +++ b/Dotnet/ScreenshotMetadata/ScreenshotHelper.cs @@ -262,8 +262,8 @@ namespace VRCX if (newChunkIndex == -1) return false; // If this file already has a text chunk, chances are it got logged twice for some reason. Stop. - var existingiTXt = FindChunkIndex(png, "iTXt"); - if (existingiTXt != -1) return false; + // var existingiTXt = FindChunkIndex(png, "iTXt"); + // if (existingiTXt != -1) return false; var newChunk = new PNGChunk("iTXt"); newChunk.InitializeTextChunk("Description", text);