From c988a77ea89b7ea65fa9d852e0d3c0445e659899 Mon Sep 17 00:00:00 2001 From: Nikolaj Olsson Date: Tue, 14 Feb 2017 16:22:33 +0100 Subject: [PATCH] Trying to improve comment - thx ivandrofly :) --- libse/UknownFormatImporterJson.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libse/UknownFormatImporterJson.cs b/libse/UknownFormatImporterJson.cs index 7756e9375..6fd543417 100644 --- a/libse/UknownFormatImporterJson.cs +++ b/libse/UknownFormatImporterJson.cs @@ -106,7 +106,8 @@ namespace Nikse.SubtitleEdit.Core if (totalDuration / subtitle.Paragraphs.Count > 1000000 || msFound == subtitle.Paragraphs.Count) { - // Switch from seconds to milliseconds + // Time codes were read as seconds, but they are actually milliseconds, + // so all time codes are divided by 1000. foreach (var p in subtitle.Paragraphs) { p.StartTime.TotalMilliseconds = p.StartTime.TotalMilliseconds / TimeCode.BaseUnit;