Refactoring: rename method

This commit is contained in:
Pieter Vander Vennet 2025-01-17 14:25:30 +01:00
parent 622049f21f
commit e69a08baa1
5 changed files with 8 additions and 11 deletions

View file

@ -70,7 +70,7 @@ export default class AllImageProviders {
/**
* Tries to extract all image data for this image. Cached on tags?.data?.id
*/
public static LoadImagesFor(
public static loadImagesFor(
tags: Store<Record<string, string>>,
tagKey?: string[]
): Store<ProvidedImage[]> {
@ -113,6 +113,6 @@ export default class AllImageProviders {
for (let i = 0; i < urls.length; i++) {
tags["image:" + i] = urls[i]
}
return this.LoadImagesFor(new ImmutableStore(tags))
return this.loadImagesFor(new ImmutableStore(tags))
}
}