Use HTTP helper when refreshing feeds

This commit is contained in:
Shadowfacts 2020-05-31 16:23:51 -04:00
parent b63081392c
commit 939470767b
Signed by: shadowfacts
GPG Key ID: 94A5AB95422746E5
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ defmodule Frenzy.UpdateFeeds do
defp update_feed(feed) do
Logger.debug("Updating #{feed.feed_url}")
case HTTPoison.get(feed.feed_url) do
case HTTP.get(feed.feed_url) do
{:ok,
%HTTPoison.Response{
status_code: 200,