Skip to content

Commit

Permalink
fix(server): fix build model mirror server lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
ericswpark committed May 12, 2024
1 parent 4ab940f commit 5f5ba4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/core/models/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def is_mirrored(self):
return False

has_mirror = False
mirror_server_model = apps.get_model("MirrorServer")
mirror_server_model = apps.get_model("core", "MirrorServer")

for mirror in list(mirror_server_model.objects.filter(enabled=True)):
# See if already mirrored
Expand Down

0 comments on commit 5f5ba4e

Please sign in to comment.