Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tenmajkl committed Mar 18, 2023
1 parent 261acc6 commit 036e834
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/profiles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export function exportMode(mode: Mode): string {
if (hasSpeed(mode) && hasColor(mode)) {
data = mode.speed + "," + mode.color.replace("#", "");
} else {
data = mode.speed ?? mode.color;
data = mode.speed ?? mode.color.replace("#", "");
}

return [mode.mode, mode.brightness, data].join(";");
Expand Down

0 comments on commit 036e834

Please sign in to comment.