Skip to content

Commit

Permalink
Merge branch 'develop' into 'main'
Browse files Browse the repository at this point in the history
Develop

See merge request Griefed/ServerPackCreator!609
  • Loading branch information
Griefed committed Sep 20, 2024
2 parents 3ef0ce2 + 6d1a855 commit be93e0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2590,7 +2590,7 @@ class ApiProperties(propertiesFile: File = File("serverpackcreator.properties"))
}
fallbackUpdated = false
if (properties != null) {
val newBlacklist = properties!!.getProperty(pConfigurationFallbackModsWhiteList)
val newBlacklist = properties!!.getProperty(pConfigurationFallbackModsList)
val currentBlacklist = internalProps.getProperty(pConfigurationFallbackModsList)
if (newBlacklist != null && currentBlacklist != newBlacklist) {
internalProps.setProperty(pConfigurationFallbackModsList, newBlacklist)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ class UpdateDialogs(
val cause = e.cause
// UserCanceledException means that the user has canceled the proxy dialog
if (cause !is UserCanceledException) {
log.error("Update could not be executed.", e)
log.error("Update could not be executed: ${e.message}.")
}
}
}
Expand Down

0 comments on commit be93e0f

Please sign in to comment.