Skip to content

Commit 63308fb

Browse files
Fix formatting
1 parent 65dd2a8 commit 63308fb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/configModel/configModel.vala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,9 @@ 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 (hint.up ().replace ("-", "_"), param.hints[hint].print (false))
252+
};
251253

252254
return yield Functions.execute_command (exec, spawn_env, out msg);
253255
}

0 commit comments

Comments
 (0)