Fix bad if statement sending doc open into infinite loop

This commit is contained in:
James Allen 2018-04-16 17:03:18 +01:00
parent d6605610f5
commit 87cc08569a

View file

@ -29,10 +29,11 @@ define [
do tryOpen = () ->
if iterations > 5
return
iterations += 1
entity = ide.fileTreeManager.findEntityById(id)
if entity? and type == 'doc'
ide.editorManager.openDoc(entity)
if entity? and type == 'file'
else if entity? and type == 'file'
ide.binaryFilesManager.openFile(entity)
else
setTimeout(tryOpen, 500)