Skip to content

Commit fd2b727

Browse files
committed
fixing silly validation
1 parent 14df7e7 commit fd2b727

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/spotify/spotify.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ export default {
203203
// If is string, try to convert it in an array
204204
if (typeof value === "string") {
205205
// Return an empty array if string is empty
206-
if (value === "" || value.length === 0) {
206+
if (value === "") {
207207
return [];
208208
}
209209

0 commit comments

Comments
 (0)