Skip to content

Commit f1557a1

Browse files
authored
Merge pull request #2875 from owenniblock/fix/incorrect-merge-opts-logic
fixes logic error on merging opts
2 parents 0268363 + a2528e2 commit f1557a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/server/ruby/bin/daemon.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -847,7 +847,7 @@ def merge_opts(opts)
847847
# extract scsynth opts
848848
begin
849849
scsynth_opts_a = Shellwords.split(opts.fetch(:scsynth_opts, ""))
850-
scsynth_opts = clobber_opts_a.each_slice(2).to_h
850+
scsynth_opts = scsynth_opts_a.each_slice(2).to_h
851851
rescue
852852
scsynth_opts = {}
853853
end

0 commit comments

Comments
 (0)