Skip to content

Commit

Permalink
Merge pull request #1837 from MushroomObserver/nimmo-ruby-3.3.0
Browse files Browse the repository at this point in the history
Update ruby 3.3
  • Loading branch information
nimmolo committed Jan 20, 2024
2 parents 5053240 + 34e6450 commit d62c828
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.2
3.3.0
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ DEPENDENCIES
xmlrpc

RUBY VERSION
ruby 3.2.2p53
ruby 3.3.0p0

BUNDLED WITH
2.3.26
4 changes: 2 additions & 2 deletions app/helpers/matrix_box_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ def matrix_box(**args, &block)
end
end

def matrix_box_image(image = nil, **)
def matrix_box_image(image = nil, **args)
return unless image

user = User.current ? "logged_in" : "no_user"
tag.div(class: "thumbnail-container") do
cache([image, user]) do
concat(interactive_image(image, **))
concat(interactive_image(image, **args))
end
end
end
Expand Down

0 comments on commit d62c828

Please sign in to comment.