File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
app/lib/frontend/handlers Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ import 'package:shelf/shelf.dart' as shelf;
1212import '../../admin/actions/actions.dart' ;
1313import '../../package/backend.dart' ;
1414import '../../package/models.dart' ;
15- import '../../package/overrides.dart' ;
1615import '../../shared/configuration.dart' ;
1716import '../../shared/redis_cache.dart' ;
1817import '../../shared/urls.dart' as urls;
@@ -60,8 +59,7 @@ Future<String> buildAllPackagesAtomFeedContent() async {
6059
6160/// Builds the content of the `/packages/<package>/feed.atom` endpoint.
6261Future <String > buildPackageAtomFeedContent (String package) async {
63- if (isSoftRemoved (package) ||
64- ! await packageBackend.isPackageVisible (package)) {
62+ if (! await packageBackend.isPackageVisible (package)) {
6563 throw NotFoundException .resource (package);
6664 }
6765 final versions = await packageBackend
You can’t perform that action at this time.
0 commit comments