Skip to content

Commit

Permalink
FIX Cycomi : dont decrypt "end_pages" (#6131)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeZeDev authored Aug 19, 2023
1 parent 66877d7 commit 5043dc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/web/mjs/connectors/Cycomi.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export default class CyComi extends Connector {
_mapPages(container, pages) {
return pages.filter(page => page.type === 'image')
.sort((self, other) => self.pageNumber - other.pageNumber)
.map(page => this.createConnectorURI(page.image));
.map(page => page.image.includes('/end_page/') ? page.image : this.createConnectorURI(page.image));
}

async _handleConnectorURI(payload) {
Expand Down

0 comments on commit 5043dc3

Please sign in to comment.