That URL is being redirected (which I might be able to get rid of) and it reveals non-standard behavior because the text of the redirecting page is prepended to the content:
Umleitung nach: /scope:0.3732595394027483/glotpress/projects/local-plugins/friends/de/default/export-translations/?format=po&filters[user_login]=admin …# Translation of Plugins - friends in German
# This file is distributed under the same license as the Plugins - friends package.
The part before the first # is from the redirection template and should not be part of the response.
I was able to workaround this with a regex replace (.replace( /^[^#]+/, '' )) but I believe this should be changed.
I ran into this with Translate Live:
That URL is being redirected (which I might be able to get rid of) and it reveals non-standard behavior because the text of the redirecting page is prepended to the content:
The part before the first
#
is from the redirection template and should not be part of the response.I was able to workaround this with a regex replace (
.replace( /^[^#]+/, '' )
) but I believe this should be changed.