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
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ import com.owncloud.android.db.ProviderMeta
AutoMigration(from = 95, to = 96),
AutoMigration(from = 96, to = 97, spec = DatabaseMigrationUtil.ResetCapabilitiesPostMigration::class),
// manual migration used for 97 to 98
AutoMigration(from = 98, to = 99),
AutoMigration(from = 98, to = 99)
// manual migration used for 99 to 100
],
exportSchema = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ class ClientIntegration(
return itemBinding.root
}

@Suppress("ReturnCount")
private fun prepareDrawableForTinting(drawable: Drawable?): Drawable? {
if (drawable == null) {
return null
Expand Down
Loading