Skip to content

Commit 1000413

Browse files
committed
- fix duplicated methods
1 parent 1d4a47a commit 1000413

File tree

3 files changed

+2
-57
lines changed

3 files changed

+2
-57
lines changed

components/gistly/actions/fetch-transcript/fetch-transcript.mjs

Lines changed: 0 additions & 55 deletions
This file was deleted.

components/gistly/actions/get-transcript/get-transcript.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default {
4444
chunkSize: this.chunkSize,
4545
};
4646

47-
const response = await this.app.fetchTranscript({
47+
const response = await this.app.getTranscript({
4848
$,
4949
params,
5050
});

components/gistly/gistly.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export default {
4646
},
4747
});
4848
},
49-
fetchTranscript(args = {}) {
49+
getTranscript(args = {}) {
5050
return this._makeRequest({
5151
path: "/youtube/transcript",
5252
...args,

0 commit comments

Comments
 (0)