diff options
author | Yamagishi Kazutoshi <ykzts@desire.sh> | 2017-12-06 19:41:57 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-12-06 11:41:57 +0100 |
commit | b21db9bbde3784556a5861e2cdec0c8c2184c72e (patch) | |
tree | 5702878677aa85352185fd22e69fb10cd142d9ee /app/lib/ostatus/activity | |
parent | 42bcbd36b72c7ddc5ae1ecced09614863ca382bd (diff) |
Using double splat operator (#5859)
Diffstat (limited to 'app/lib/ostatus/activity')
-rw-r--r-- | app/lib/ostatus/activity/base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/ostatus/activity/base.rb b/app/lib/ostatus/activity/base.rb index 8b27b124f..c5933f3ad 100644 --- a/app/lib/ostatus/activity/base.rb +++ b/app/lib/ostatus/activity/base.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class OStatus::Activity::Base - def initialize(xml, account = nil, options = {}) + def initialize(xml, account = nil, **options) @xml = xml @account = account @options = options |