File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
lib/components_guide_web/live Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -40,12 +40,14 @@ defmodule ComponentsGuideWeb.LatencyComparisonLive do
40
40
content_encoding = Enum . find ( h , fn { key , _ } -> String . downcase ( key ) == "content_encoding" end )
41
41
transfer_encoding = Enum . find ( h , fn { key , _ } -> String . downcase ( key ) == "transfer-encoding" end )
42
42
cache_control = Enum . find ( h , fn { key , _ } -> String . downcase ( key ) == "cache-control" end )
43
+ location = Enum . find ( h , fn { key , _ } -> String . downcase ( key ) == "location" end )
43
44
inspect ( [
44
45
content_length ,
45
46
content_encoding ,
46
47
transfer_encoding ,
47
- cache_control
48
- ] )
48
+ cache_control ,
49
+ location
50
+ ] |> Enum . filter ( fn v -> v != nil end ) )
49
51
end
50
52
end
51
53
@@ -162,7 +164,7 @@ defmodule ComponentsGuideWeb.LatencyComparisonLive do
162
164
"https://vercel.com/atom" ,
163
165
"https://tailwindcss.com/blog" ,
164
166
"https://tailwindcss.com/feeds/atom.xml" ,
165
- "https://fly.io/blog" ,
167
+ "https://fly.io/blog/ " ,
166
168
"https://fly.io/blog/feed.xml" ,
167
169
"https://render.com/blog" ,
168
170
"https://render.com/blog/rss.xml"
You can’t perform that action at this time.
0 commit comments