onering-client 0.3.3 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/onering.rb +1 -1
- data/lib/onering/util.rb +2 -2
- metadata +1 -1
data/lib/onering.rb
CHANGED
data/lib/onering/util.rb
CHANGED
@@ -109,7 +109,7 @@ module Onering
|
|
109
109
|
return fact_value.get(name, default)
|
110
110
|
else
|
111
111
|
# not an object, return default
|
112
|
-
return
|
112
|
+
return default
|
113
113
|
end
|
114
114
|
else
|
115
115
|
# this is a simple request, return the fact
|
@@ -118,7 +118,7 @@ module Onering
|
|
118
118
|
end
|
119
119
|
end
|
120
120
|
|
121
|
-
return
|
121
|
+
return default
|
122
122
|
end
|
123
123
|
|
124
124
|
def make_filter(filter)
|