I'm using paperclip to upload images in rails, the images are saved well, but then, <%= @user.avatar.url %>
returns this:
/system/users/avatars/000/000/001/original/1000203288934_DOCF635653TS102451125.gif%3F1416704056
/system/users/avatars/000/000/001/original/10407722_1175881652452049_8262371134443675175_n.jpg%3F1416705182
instead of just:
/system/users/avatars/000/000/001/original/1000203288934_DOCF635653TS102451125.gif
/system/users/avatars/000/000/001/original/10407722_1175881652452049_8262371134443675175_n.jpg
It happens for every image I upload. Where the hell that %3F-whatever at the end of the url comes from? What I'm doing wrong?