Skip to content

Commit

Permalink
fix: Anroid 解包没有 services 存储错误
Browse files Browse the repository at this point in the history
  • Loading branch information
icyleaf committed Dec 18, 2023
1 parent 8132f2c commit d6d9602
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/services/teardown_service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def process_android(parser, metadata)
metadata.activities = parser&.activities&.select(&:present?).map(&:name)
metadata.permissions = parser&.use_permissions&.select(&:present?) || []
metadata.features = parser&.use_features&.select(&:present?) || []
metadata.services = parser&.services&.sort_by(&:name)&.select(&:present?)&.map(&:name)
metadata.services = parser&.services&.sort_by(&:name)&.select(&:present?)&.map(&:name) || []
metadata.url_schemes = parser&.schemes&.sort
metadata.deep_links = parser&.deep_links&.sort

Expand Down

0 comments on commit d6d9602

Please sign in to comment.