mirror of
https://github.com/gchq/CyberChef
synced 2025-12-10 21:33:36 +00:00
Line ending sequences for the current tab are included in the deep link URL
This commit is contained in:
@@ -502,6 +502,16 @@ class App {
|
||||
this.manager.output.chrEncChange(parseInt(this.uriParams.oenc, 10));
|
||||
}
|
||||
|
||||
// Input EOL sequence
|
||||
if (this.uriParams.ieol) {
|
||||
this.manager.input.eolChange(this.uriParams.ieol);
|
||||
}
|
||||
|
||||
// Output EOL sequence
|
||||
if (this.uriParams.oeol) {
|
||||
this.manager.output.eolChange(this.uriParams.oeol);
|
||||
}
|
||||
|
||||
// Read in input data from URI params
|
||||
if (this.uriParams.input) {
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user