Hash from federation library now contains strings

closes #7258
This commit is contained in:
Benjamin Neff 2017-01-08 05:16:59 +01:00 committed by Dennis Schubert
parent b79ccc5207
commit 8e196a34a1
No known key found for this signature in database
GPG key ID: 5A0304BEA7966D7E

View file

@ -41,7 +41,7 @@ class Retraction
def public?
# TODO: backward compatibility for pre 0.6 pods, they don't relay public retractions
data[:target][:public] && (!data[:target][:parent] || data[:target][:parent][:local])
data[:target][:public] == "true" && (!data[:target][:parent] || data[:target][:parent][:local] == "true")
end
private