Skip to content

Commit

Permalink
Merge pull request #2 from 447491480/master
Browse files Browse the repository at this point in the history
Update index.js,Fixing String Garbled Issue When Native Language Is N…
  • Loading branch information
phartenfeller authored Jul 23, 2024
2 parents 694514f + 5098073 commit eb95750
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ async function main() {

alfy.output(
projects.map((p) => ({
title: p.title,
subtitle: p.subtitle,
title: decodeURIComponent(p.title),
subtitle: decodeURIComponent(p.subtitle),
// icon: p.icon,
arg: p.folderUri,
uid: p.uid,
Expand Down

0 comments on commit eb95750

Please sign in to comment.