Skip to content

Commit 943311f

Browse files
authored
Merge pull request #165 from kpinnipa/moveSnippets
Fix New Snippet Editor Error
2 parents 6c1241c + 4fd7cdc commit 943311f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/CodeSnippetContentsService.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ export class CodeSnippetContentsService {
5050
});
5151
return data;
5252
} catch (error) {
53-
return error;
53+
console.log(error);
54+
throw error;
5455
}
5556
// const data = await this.contentsManager.get(path, {
5657
// type: type,

0 commit comments

Comments
 (0)