From 318fe124bfac98091f67e4adb9037c208e87d89c Mon Sep 17 00:00:00 2001 From: Srivats P Date: Fri, 2 Feb 2024 17:02:04 +0530 Subject: [PATCH] Suggest disabling intelligent import if pcap diff --- common/pcapfileformat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/pcapfileformat.cpp b/common/pcapfileformat.cpp index d3f9da1..856601c 100644 --- a/common/pcapfileformat.cpp +++ b/common/pcapfileformat.cpp @@ -431,7 +431,7 @@ _retry: diffFile.close(); if (diffFile.size()) { - error.append(tr("

There is a diff between the original and imported streams. See details to review the diff.

Why a diff? See possible reasons.

\n\n\n\n").arg("https://jump.ostinato.org/pcapdiff")); + error.append(tr("

There is a diff between the original and imported streams. See details to review the diff.

💡 If you don't need to edit packets, you can retry the import and uncheck the Intelligent Import option.

Why a diff? See possible reasons.

\n\n\n\n").arg("https://jump.ostinato.org/pcapdiff")); diffFile.open(); diffFile.seek(0); error.append(QString(diffFile.readAll()));