JoelBesada / pasteboard

Clipboard and drag & drop image sharing web app
http://pasteboard.co
638 stars 145 forks source link

URL Issue #16

Open ghost opened 10 years ago

ghost commented 10 years ago

Tried a new install of the script. after hitting upload it gives the link in a text box. eg.

www.i.is.cc/2O4LcnyJ.png

but the goto image button has the domain twice.

http://www.i.is.cc/www.i.is.cc/2O4LcnyJ.png

ThaMunsta commented 9 years ago

I had this issue too. I changed the long url to include the http:// so the browser didn't think it was a relative path. "/controllers/main.coffee" I changed line 116 longURL = "#{domain}/#{fileName}" to longURL = "http://#{domain}/#{fileName}"

It did the trick for me! :)