Fix function names (#1803)

This commit is contained in:
toasted-nutbread 2021-07-06 20:07:13 -04:00 committed by GitHub
parent e88d63fc6d
commit df72c3927b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1691,7 +1691,7 @@ class Backend {
try { try {
if (screenshotDetails !== null) { if (screenshotDetails !== null) {
screenshotFileName = await this._injectAnkNoteScreenshot(ankiConnect, timestamp, definitionDetails, screenshotDetails); screenshotFileName = await this._injectAnkiNoteScreenshot(ankiConnect, timestamp, definitionDetails, screenshotDetails);
} }
} catch (e) { } catch (e) {
errors.push(serializeError(e)); errors.push(serializeError(e));
@ -1699,7 +1699,7 @@ class Backend {
try { try {
if (clipboardDetails !== null && clipboardDetails.image) { if (clipboardDetails !== null && clipboardDetails.image) {
clipboardImageFileName = await this._injectAnkNoteClipboardImage(ankiConnect, timestamp, definitionDetails); clipboardImageFileName = await this._injectAnkiNoteClipboardImage(ankiConnect, timestamp, definitionDetails);
} }
} catch (e) { } catch (e) {
errors.push(serializeError(e)); errors.push(serializeError(e));
@ -1715,7 +1715,7 @@ class Backend {
try { try {
if (audioDetails !== null) { if (audioDetails !== null) {
audioFileName = await this._injectAnkNoteAudio(ankiConnect, timestamp, definitionDetails, audioDetails); audioFileName = await this._injectAnkiNoteAudio(ankiConnect, timestamp, definitionDetails, audioDetails);
} }
} catch (e) { } catch (e) {
errors.push(serializeError(e)); errors.push(serializeError(e));
@ -1732,7 +1732,7 @@ class Backend {
}; };
} }
async _injectAnkNoteAudio(ankiConnect, timestamp, definitionDetails, details) { async _injectAnkiNoteAudio(ankiConnect, timestamp, definitionDetails, details) {
const {type, term, reading} = definitionDetails; const {type, term, reading} = definitionDetails;
if ( if (
type === 'kanji' || type === 'kanji' ||
@ -1767,7 +1767,7 @@ class Backend {
return fileName; return fileName;
} }
async _injectAnkNoteScreenshot(ankiConnect, timestamp, definitionDetails, details) { async _injectAnkiNoteScreenshot(ankiConnect, timestamp, definitionDetails, details) {
const {tabId, frameId, format, quality} = details; const {tabId, frameId, format, quality} = details;
const dataUrl = await this._getScreenshot(tabId, frameId, format, quality); const dataUrl = await this._getScreenshot(tabId, frameId, format, quality);
@ -1783,7 +1783,7 @@ class Backend {
return fileName; return fileName;
} }
async _injectAnkNoteClipboardImage(ankiConnect, timestamp, definitionDetails) { async _injectAnkiNoteClipboardImage(ankiConnect, timestamp, definitionDetails) {
const dataUrl = await this._clipboardReader.getImage(); const dataUrl = await this._clipboardReader.getImage();
if (dataUrl === null) { if (dataUrl === null) {
return null; return null;