| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
following this pull request: PubToolBox@9e4ae39 Fix/Fixed bug in media fetch - was not separating postId and context params correctly PubToolBox#75
| Back | FazBrowse Home | New Git URL |
Quite staggering that this is still present.
The endpoint for fetching media for a post is incorrect.
it was
public static final String POST_MEDIAS = "/media?parent={postId}?context={context}";
And is now:
public static final String POST_MEDIAS = "/media?parent={postId}&context={context}";
second ? changed to &