mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-11-04 16:18:55 +01:00 
			
		
		
		
	Group 'Source not installed' cases in library update error log (#5589)
This commit is contained in:
		@@ -70,8 +70,11 @@ open class SourceManager(private val context: Context) {
 | 
			
		||||
            return name
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        private fun getSourceNotInstalledException(): Exception {
 | 
			
		||||
            return Exception(context.getString(R.string.source_not_installed, id.toString()))
 | 
			
		||||
        private fun getSourceNotInstalledException(): SourceNotInstalledException {
 | 
			
		||||
            return SourceNotInstalledException(id)
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    inner class SourceNotInstalledException(val id: Long) :
 | 
			
		||||
        Exception(context.getString(R.string.source_not_installed, id.toString()))
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user