Ignore source/extension, tracker icon and thumbnails requests from image queue
The server is not requesting these images through an extension; thus, it is not a problem to send them directly to the server since there is no problem of getting the server "stuck" due to extension rate limits.
This commit is contained in:
@@ -91,6 +91,9 @@ export const SettingsTrackerCard = ({ tracker }: { tracker: TTrackerSearch }) =>
|
||||
variant: 'rounded',
|
||||
sx: { width: 64, height: 64 },
|
||||
},
|
||||
spinnerImageProps: {
|
||||
ignoreQueue: true,
|
||||
},
|
||||
}}
|
||||
/>
|
||||
</ListItemAvatar>
|
||||
|
||||
@@ -211,6 +211,9 @@ const TrackerActiveHeader = ({
|
||||
variant: 'rounded',
|
||||
sx: { width: 64, height: 64 },
|
||||
},
|
||||
spinnerImageProps: {
|
||||
ignoreQueue: true,
|
||||
},
|
||||
}}
|
||||
/>
|
||||
</TrackerActiveLink>
|
||||
|
||||
@@ -156,6 +156,7 @@ export const TrackerMangaCard = ({
|
||||
<SpinnerImage
|
||||
useFetchApi={false}
|
||||
disableCors
|
||||
ignoreQueue
|
||||
alt={manga.title}
|
||||
src={manga.coverUrl}
|
||||
spinnerStyle={{ width: '100%', height: '100%' }}
|
||||
|
||||
@@ -43,6 +43,9 @@ export const TrackerUntrackedCard = ({
|
||||
variant: 'rounded',
|
||||
sx: { width: 64, height: 64 },
|
||||
},
|
||||
spinnerImageProps: {
|
||||
ignoreQueue: true,
|
||||
},
|
||||
}}
|
||||
/>
|
||||
<Button sx={{ flexGrow: '1' }} onClick={onClick}>
|
||||
|
||||
Reference in New Issue
Block a user