From 4487da1ae6c2a719355f8b3257fb618fe51d19f2 Mon Sep 17 00:00:00 2001 From: Srivats P Date: Mon, 18 May 2020 20:58:39 +0530 Subject: [PATCH] Add URL to why pcap diff from error message --- common/pcapfileformat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/pcapfileformat.cpp b/common/pcapfileformat.cpp index a990b41..9a0a03f 100644 --- a/common/pcapfileformat.cpp +++ b/common/pcapfileformat.cpp @@ -443,7 +443,7 @@ _retry: diffFile.close(); if (diffFile.size()) { - error.append("There is a diff between the original and imported streams. See details for diff.\n\n\n\n"); + 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")); diffFile.open(); diffFile.seek(0); error.append(QString(diffFile.readAll()));