From e192ce146b8eef71dd2cadfcfa194c45e42b51f4 Mon Sep 17 00:00:00 2001 From: Denton Liu Date: Mon, 13 Jun 2016 11:22:50 -0400 Subject: [PATCH] Fix #95 --- src/app/compiler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/compiler.js b/src/app/compiler.js index 38b4e4c896..1ae51caf8c 100644 --- a/src/app/compiler.js +++ b/src/app/compiler.js @@ -45,7 +45,7 @@ function Compiler (editor, handleGithubCall, outputField, hidingRHP, updateFiles editor.setCacheFileContent(input); var files = {}; - files[editor.getCacheFile()] = input; + files[utils.fileNameFromKey(editor.getCacheFile())] = input; gatherImports(files, missingInputs, function (input, error) { outputField.empty(); if (input === null) {