mirror of
https://github.com/django/django.git
synced 2025-10-27 23:56:08 +00:00
Before4befb30the detection was broken because we used isinstance against a LazyObject rather than against a Storage class. That commit fixed it by looking directly at the object wrapped by LazyObject. This could however be a problem to anyone who subclasses the collectstatic management Command and directly supplies a Storage class. Refs #21581. Backport of7e27885c6efrom master.