Fetch images via html img elements (#727)

This commit is contained in:
schroda
2024-04-10 01:22:47 +02:00
committed by GitHub
parent 5f7240d93b
commit 6c43e974e2

View File

@@ -863,7 +863,7 @@ export class RequestManager {
/**
* Make sure to call "cleanup" once the image is not needed anymore (only required if fetched via "fetch api")
*/
public requestImage(url: string, priority?: QueuePriority, useFetchApi: boolean = true): ImageRequest {
public requestImage(url: string, priority?: QueuePriority, useFetchApi: boolean = false): ImageRequest {
if (useFetchApi) {
return this.fetchImageViaFetchApi(url, priority);
}