We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c44ef3 commit 16222c2Copy full SHA for 16222c2
src/deepnote-content-provider.ts
@@ -21,7 +21,7 @@ export class DeepnoteContentProvider extends RestContentProvider {
21
localPath: string,
22
options?: Contents.IFetchOptions
23
): Promise<Contents.IModel> {
24
- const isDeepnoteFile = localPath.endsWith('.deepnote');
+ const isDeepnoteFile = localPath.toLowerCase().endsWith('.deepnote');
25
26
if (!isDeepnoteFile) {
27
// Not a .deepnote file, return as-is
0 commit comments