Skip to content

Commit c910b1f

Browse files
Fix formatting
1 parent 65dd2a8 commit c910b1f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/configModel/configModel.vala

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,11 @@ namespace SwayNotificationCenter {
247247
spawn_env += "SWAYNC_REPLACES_ID=%s".printf (param.replaces_id.to_string ());
248248
spawn_env += "SWAYNC_TIME=%s".printf (param.time.to_string ());
249249
spawn_env += "SWAYNC_DESKTOP_ENTRY=%s".printf (param.desktop_entry ?? "");
250-
foreach (string hint in param.hints.get_keys()) spawn_env += "SWAYNC_HINT_%s=%s".printf(hint.up ().replace ("-", "_"), param.hints[hint].print (false));
250+
foreach (string hint in param.hints.get_keys ()) {
251+
spawn_env += "SWAYNC_HINT_%s=%s".printf (
252+
hint.up ().replace ("-", "_"),
253+
param.hints[hint].print (false));
254+
}
251255

252256
return yield Functions.execute_command (exec, spawn_env, out msg);
253257
}

0 commit comments

Comments
 (0)