Unverified Commit 8e196a34 authored by Benjamin Neff's avatar Benjamin Neff Committed by Dennis Schubert
Browse files

Hash from federation library now contains strings

closes #7258
parent b79ccc52
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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