lib/omniauth/strategies/azure_oauth2.rb in omniauth-azure-oauth2-0.0.3 vs lib/omniauth/strategies/azure_oauth2.rb in omniauth-azure-oauth2-0.0.4
- old
+ new
@@ -51,11 +51,11 @@
end
def raw_info
# it's all here in JWT http://msdn.microsoft.com/en-us/library/azure/dn195587.aspx
- @raw_info ||= JWT.decode(access_token.token, nil, false).first
+ @raw_info ||= ::JWT.decode(access_token.token, nil, false).first
end
end
end
-end
\ No newline at end of file
+end