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;
12
12
import '../../admin/actions/actions.dart' ;
13
13
import '../../package/backend.dart' ;
14
14
import '../../package/models.dart' ;
15
- import '../../package/overrides.dart' ;
16
15
import '../../shared/configuration.dart' ;
17
16
import '../../shared/redis_cache.dart' ;
18
17
import '../../shared/urls.dart' as urls;
@@ -60,8 +59,7 @@ Future<String> buildAllPackagesAtomFeedContent() async {
60
59
61
60
/// Builds the content of the `/packages/<package>/feed.atom` endpoint.
62
61
Future <String > buildPackageAtomFeedContent (String package) async {
63
- if (isSoftRemoved (package) ||
64
- ! await packageBackend.isPackageVisible (package)) {
62
+ if (! await packageBackend.isPackageVisible (package)) {
65
63
throw NotFoundException .resource (package);
66
64
}
67
65
final versions = await packageBackend
You can’t perform that action at this time.
0 commit comments