fix: Fixed issue with Simplenote importer where empty notes would not be imported (#2793)
This commit is contained in:
@@ -12,7 +12,8 @@ type SimplenoteData = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
const isSimplenoteEntry = (entry: any): boolean => entry.id && entry.content && entry.creationDate && entry.lastModified
|
const isSimplenoteEntry = (entry: any): boolean =>
|
||||||
|
entry.id && entry.content != undefined && entry.creationDate && entry.lastModified
|
||||||
|
|
||||||
export class SimplenoteConverter implements Converter {
|
export class SimplenoteConverter implements Converter {
|
||||||
constructor() {}
|
constructor() {}
|
||||||
|
|||||||
Reference in New Issue
Block a user