Google has discontinued their URL shortening service...
mixEjuice relies on it to save recipes, old links still work but you cant create new ones.
Does anyone know the dev so we can ask him to change URL shortening service?
In case Daniel doesn't respond:
Paste this into the developer console, and it will show you the long (unshortened) URL whenever you click on the "link" button. This could very easily be modified into a Tampermonkey script (browser extension) so it'll be automatically added every time you visit.
window.XMLHttpRequest.prototype.realSend = XMLHttpRequest.prototype.send;var newSend = function(vData) {var start = vData.indexOf('"') + 1;window.alert(vData.substr(start, vData.lastIndexOf('"') - start));this.realSend(vData);};window.XMLHttpRequest.prototype.send = newSend;