Fix for Import issue from URL (#1416)
parent
8bdf02812c
commit
e30bbb1cb0
|
@ -25,7 +25,7 @@ class ImportWorker
|
||||||
def process_blocks(import)
|
def process_blocks(import)
|
||||||
from_account = import.account
|
from_account = import.account
|
||||||
|
|
||||||
CSV.foreach(import.data.path) do |row|
|
CSV.new(open(import.data.url)).each do |row|
|
||||||
next if row.size != 1
|
next if row.size != 1
|
||||||
|
|
||||||
begin
|
begin
|
||||||
|
@ -41,7 +41,7 @@ class ImportWorker
|
||||||
def process_follows(import)
|
def process_follows(import)
|
||||||
from_account = import.account
|
from_account = import.account
|
||||||
|
|
||||||
CSV.foreach(import.data.path) do |row|
|
CSV.new(open(import.data.url)).each do |row|
|
||||||
next if row.size != 1
|
next if row.size != 1
|
||||||
|
|
||||||
begin
|
begin
|
||||||
|
|
Loading…
Reference in New Issue