wowzer 0.0.6 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/wowzer/application_response.rb +3 -1
- data/lib/wowzer/version.rb +1 -1
- metadata +1 -1
@@ -31,7 +31,9 @@ module Wowzer
|
|
31
31
|
private
|
32
32
|
|
33
33
|
def self.get_data(application)
|
34
|
-
application.resource.links['wowzer:application:response']
|
34
|
+
if application.resource.links['wowzer:application:response']
|
35
|
+
application.resource.links['wowzer:application:response'].map{|link| link.instance_variable_get("@link")}
|
36
|
+
end
|
35
37
|
end
|
36
38
|
|
37
39
|
end
|
data/lib/wowzer/version.rb
CHANGED