Skip to content

Commit 7b773a8

Browse files
author
Nils Henning
committed
[BUGFIX] missing method extremely delayed server response
1 parent b2f9e5e commit 7b773a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/lib/matestack/ui/core/has_view_context.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def method_missing(*args, &block)
88
if @view_context.respond_to? args.first
99
@view_context.send(*args, &block)
1010
else
11-
super
11+
raise NameError, "NameError: undefined method or local variable `#{args.first}' for #{self.class.name}"
1212
end
1313
end
14-
end
14+
end

0 commit comments

Comments
 (0)