Skip to content
Snippets Groups Projects
Commit 67d3c6d3 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FIX #12346 TIME 0:10 fix format in jnlp

parent 79b53657
No related branches found
No related tags found
No related merge requests found
......@@ -660,7 +660,7 @@ export class DocumentViewerComponent implements OnInit {
this.http.post('../../rest/jnlp', this.editor.options).pipe(
tap((data: any) => {
window.location.href = '../../rest/jnlp/' + data.generatedJnlp;
this.checkLockFile(data.jnlpUniqueId, this.format);
this.checkLockFile(data.jnlpUniqueId, this.file.format);
})
).subscribe();
}
......@@ -689,7 +689,7 @@ export class DocumentViewerComponent implements OnInit {
this.http.post('../../rest/jnlp', this.editor.options).pipe(
tap((data: any) => {
window.location.href = '../../rest/jnlp/' + data.generatedJnlp;
this.checkLockFile(data.jnlpUniqueId, this.format);
this.checkLockFile(data.jnlpUniqueId, this.file.format);
})
).subscribe();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment