Skip to content
Snippets Groups Projects
Commit 60964014 authored by Jeffrey Phillips Freeman's avatar Jeffrey Phillips Freeman :boom:
Browse files

Fixed bug using &. incorrectly.

parent 4715a443
No related branches found
No related tags found
No related merge requests found
...@@ -56,8 +56,10 @@ module Kiss ...@@ -56,8 +56,10 @@ module Kiss
# Previous verious defaulted to Xastir-friendly configs. Unfortunately # Previous verious defaulted to Xastir-friendly configs. Unfortunately
# those don't work with Bluetooth TNCs, so we're reverting to None. # those don't work with Bluetooth TNCs, so we're reverting to None.
kwargs&.each do |name,value| if kwargs
write_setting(name, value) kwargs.each do |name,value|
write_setting(name, value)
end
end end
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment