An unofficial, mostly Bitwarden-compatible API server written in Ruby (Sinatra and ActiveRecord)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Helper: make nil.try() work again

The Sinatra update brought in ActiveSupport which for some reason
breaks nil.try(), so fix it again.

+4
+4
lib/helper.rb
··· 32 32 def present? 33 33 false 34 34 end 35 + 36 + def try(*a, &b) 37 + nil 38 + end 35 39 end 36 40 37 41 class String