Facebook callback has started appending #_=_ hash underscore to the Return URL
#_=_
Does anyone know why? What is the solution?
Adding this to my redirect page fixed the problem for me ...
if (window.location.href.indexOf('#_=_') > 0) { window.location = window.location.href.replace(/#.*/, ''); }