Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion V2er/State/DataFlow/Model/FeedInfo.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ struct FeedInfo: BaseModel {
if twoStepStr.notEmpty() && twoStepStr.contains("两步验证") {
return false
}
return items.count > 0 || items[0].userName.notEmpty
return items.count > 0 && items[0].userName.notEmpty
}

mutating func append(feedInfo: FeedInfo) {
Expand Down
2 changes: 1 addition & 1 deletion fastlane/changelog_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

module ChangelogHelper
# Import Fastlane's UI for logging
UI = FastlaneCore::UI unless Fastlane.const_defined?(:UI)
UI = FastlaneCore::UI unless defined?(UI)
# Extract changelog for a specific version from CHANGELOG.md
# @param version [String] The version to extract (e.g., "1.1.1")
# @return [String] The changelog content for the specified version
Expand Down
Loading