Remove source overwrite logic since built-in sources no longer exist

This commit is contained in:
arkon
2020-12-12 16:15:18 -05:00
parent 836aec4396
commit 1a439ecece
2 changed files with 4 additions and 5 deletions

View File

@@ -124,8 +124,7 @@ class ExtensionManager(
.map { it.extension }
installedExtensions
.flatMap { it.sources }
// overwrite is needed until the bundled sources are removed
.forEach { sourceManager.registerSource(it, true) }
.forEach { sourceManager.registerSource(it) }
untrustedExtensions = extensions
.filterIsInstance<LoadResult.Untrusted>()