Skip to content

Commit 28fb93f

Browse files
committed
follow up #49812, fix the wrong type declaration
#49812 introduced a bug and broke the CI. This commit fixes it up.
1 parent 0b599ce commit 28fb93f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/loading.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ function manifest_deps_get(env::String, where::PkgId, name::String)::Union{Nothi
627627
exts = get(d, "extensions", nothing)::Union{Dict{String, Any}, Nothing}
628628
if exts !== nothing
629629
# Check if `where` is an extension of the project
630-
if where.name in keys(exts) && where.uuid == uuid5(proj.uuid::String, where.name)
630+
if where.name in keys(exts) && where.uuid == uuid5(proj.uuid::UUID, where.name)
631631
# Extensions can load weak deps...
632632
weakdeps = get(d, "weakdeps", nothing)::Union{Dict{String, Any}, Nothing}
633633
if weakdeps !== nothing

0 commit comments

Comments
 (0)