mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-25 17:26:17 -04:00
Corrected error messages mismatches
This commit is contained in:
parent
a89c2bbc4f
commit
8e871637b5
3 changed files with 4 additions and 4 deletions
|
@ -79,7 +79,7 @@ class NTPTimestampToUNIXTimestamp extends Operation {
|
|||
|
||||
// Check whether the seconds value part do not exceeds the greatest seconds value
|
||||
if (unixTimestampSecondsPart > greatestSecondsValue) {
|
||||
return `Error: The NTP Timestamp seconds part '${unixTimestampSecondsPart}' exceeds the greatest authorized seconds value ${greatestSecondsValue} due to an incorrect provided UNIX timestamp`;
|
||||
return `Error: The NTP Timestamp seconds part '${unixTimestampSecondsPart}' exceeds the greatest authorized seconds value '${greatestSecondsValue}' due to an incorrect provided UNIX timestamp`;
|
||||
}
|
||||
|
||||
// Convert the UNIX timestamp seconds part value (seconds elapsed since 01 january
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue