atmosphere explorer
0
fork

Configure Feed

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

decode URL encoded strings

Juliet f2edc2a2 2d5d309e

+6
+6
src/components/search.tsx
··· 141 141 input = input.trim().replace(/^@/, ""); 142 142 if (!input.length) return; 143 143 144 + if (input.includes("%")) { 145 + try { 146 + input = decodeURIComponent(input); 147 + } catch {} 148 + } 149 + 144 150 setShowSearch(false); 145 151 setInput(undefined); 146 152 setSelectedIndex(-1);