Fix missing "to_h" error message on Pawoo sources

This commit is contained in:
BrokenEagle
2020-01-29 05:06:54 +00:00
parent d29b88d43b
commit a1f959bacb

View File

@@ -50,6 +50,10 @@ class PawooApiClient
def commentary
nil
end
def to_h
json
end
end
class Status
@@ -97,6 +101,10 @@ class PawooApiClient
commentary << json["content"]
commentary
end
def to_h
json
end
end
def get(url)