diff --git a/Resources/views/layout.html.twig b/Resources/views/layout.html.twig
index e849912..66ea3b0 100644
--- a/Resources/views/layout.html.twig
+++ b/Resources/views/layout.html.twig
@@ -386,6 +386,12 @@
endpoint = $('#api_endpoint').val();
}
+ // Workaround for Firefox bug and a thereby resulting nginx incompatibility
+ if (method == "LINK") {
+ method = "POST";
+ params._method = "LINK";
+ }
+
// prepare final parameters
var body = {};
if(bodyFormat == 'json' && method != 'GET') {