Skip to content

Commit

Permalink
updated source id in the readmarker function
Browse files Browse the repository at this point in the history
  • Loading branch information
FaizanDurrani committed Nov 7, 2023
1 parent 67f08c8 commit f7f03b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Paperback/Paperback.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ import { getAuthorizationString,
// - getTags() which is called on the homepage
// - search method which is called even if the user search in an other source
export const PaperbackInfo: SourceInfo = {
version: '1.2.10',
version: '1.2.12',
name: 'Paperback',
icon: 'icon.png',
author: 'Lemon | Faizan Durrani',
Expand Down Expand Up @@ -534,7 +534,7 @@ export class Paperback extends Source {
const komgaAPI = await getKomgaAPI(this.stateManager)

for (const readAction of chapterReadActions) {
if (readAction.sourceId != 'Komga') {
if (readAction.sourceId != 'Paperback') {
console.log(`Manga ${readAction.mangaId} from source ${readAction.sourceId} can not be used as it does not come from Komga. Discarding`)
await actionQueue.discardChapterReadAction(readAction)
} else {
Expand Down

0 comments on commit f7f03b7

Please sign in to comment.