re-applied changes for redirect to request for comments

This commit is contained in:
Ralf Teusner
2016-09-09 14:19:47 +02:00
parent 0f76b1cb90
commit 3cd224c57e

View File

@ -54,8 +54,8 @@ CodeOceanEditorSubmissions = {
// This is the case, since it is set via a call to ancestor_id on the model, which returns either file_id if set, or id if it is not set. // This is the case, since it is set via a call to ancestor_id on the model, which returns either file_id if set, or id if it is not set.
// therefore the else part is not needed any longer... // therefore the else part is not needed any longer...
// if we have an file_id set (the file is a copy of a teacher supplied given file) // if we have an file_id set (the file is a copy of a teacher supplied given file) and the new file-ids are present in the response
if (file_id_old != null){ if (file_id_old != null && data.files){
// if we find file_id_old (this is the reference to the base file) in the submission, this is the match // if we find file_id_old (this is the reference to the base file) in the submission, this is the match
for(var j = 0; j< data.files.length; j++){ for(var j = 0; j< data.files.length; j++){
if(data.files[j].file_id == file_id_old){ if(data.files[j].file_id == file_id_old){