Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
MaikoTan committed Feb 15, 2025
1 parent 42b2ddd commit ff05664
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/command.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,9 @@ export function apply(ctx: Context, config: Config) {
}

if (config.asset && ctx.assets) {
url = await ctx.booru.imgUrlToAssetUrl(url) ?? url
url = (await ctx.booru.imgUrlToAssetUrl(url)) ?? url
} else if (config.base64) {
url = await ctx.booru.imgUrlToBase64(url) ?? url
url = (await ctx.booru.imgUrlToBase64(url)) ?? url
}
switch (config.output) {
case OutputType.All:
Expand Down

0 comments on commit ff05664

Please sign in to comment.