🌈️ apply a wallpaper based on the weather outside
0

Configure Feed

Select the types of activity you want to include in your feed.

fix(analyze): remove unneeded fromFileUrls

Angel Wang (Jun 22, 2026, 11:24 PM -0600) 9df569b2 40506e0b

+2 -3
+2 -3
src/analyze/index.ts
··· 6 6 type ImageAnalysisData, 7 7 runPreAnalysis, 8 8 } from "./analysis.ts" 9 - import * as path from "@std/path" 10 9 import "zx/globals" 11 10 12 11 console.debug(chalkDebug(`Trying to load config from ${analyzeConfigPath}...`)) ··· 29 28 30 29 await runPreAnalysis(config.preAnalysisCommands) 31 30 32 - await analyzeImages(path.fromFileUrl(config.imageDir), imageData, cachePath) 31 + await analyzeImages(config.imageDir, imageData, cachePath) 33 32 34 - await fs.rm(path.fromFileUrl(`${cachePath}.bak`), { force: true }) 33 + await fs.rm(`${cachePath}.bak`, { force: true })