Kaynağa Gözat

Fixes issue #37

tags/v1.4.1
Isaac Bythewood 8 yıl önce
ebeveyn
işleme
5cb59746df
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. +1
    -1
      pinry/core/models.py

+ 1
- 1
pinry/core/models.py Dosyayı Görüntüle

@@ -14,7 +14,7 @@ from ..users.models import User
class ImageManager(models.Manager):
# FIXME: Move this into an asynchronous task
def create_for_url(self, url):
file_name = url.split("/")[-1]
file_name = url.split("/")[-1].split('#')[0].split('?')[0]
buf = StringIO()
response = requests.get(url)
buf.write(response.content)


Yükleniyor…
İptal
Kaydet