mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-11-04 08:08:55 +01:00 
			
		
		
		
	Suppress some deprecation warnings
This commit is contained in:
		@@ -92,6 +92,7 @@ object Migrations {
 | 
			
		||||
            }
 | 
			
		||||
            if (oldVersion < 44) {
 | 
			
		||||
                // Reset sorting preference if using removed sort by source
 | 
			
		||||
                @Suppress("DEPRECATION")
 | 
			
		||||
                if (preferences.librarySortingMode().get() == LibrarySort.SOURCE) {
 | 
			
		||||
                    preferences.librarySortingMode().set(LibrarySort.ALPHA)
 | 
			
		||||
                }
 | 
			
		||||
 
 | 
			
		||||
@@ -62,6 +62,7 @@ interface Source : tachiyomi.source.Source {
 | 
			
		||||
    /**
 | 
			
		||||
     * [1.x API] Get the updated details for a manga.
 | 
			
		||||
     */
 | 
			
		||||
    @Suppress("DEPRECATION")
 | 
			
		||||
    override suspend fun getMangaDetails(manga: MangaInfo): MangaInfo {
 | 
			
		||||
        return fetchMangaDetails(manga.toSManga()).awaitSingle()
 | 
			
		||||
            .toMangaInfo()
 | 
			
		||||
@@ -70,6 +71,7 @@ interface Source : tachiyomi.source.Source {
 | 
			
		||||
    /**
 | 
			
		||||
     * [1.x API] Get all the available chapters for a manga.
 | 
			
		||||
     */
 | 
			
		||||
    @Suppress("DEPRECATION")
 | 
			
		||||
    override suspend fun getChapterList(manga: MangaInfo): List<ChapterInfo> {
 | 
			
		||||
        return fetchChapterList(manga.toSManga()).awaitSingle()
 | 
			
		||||
            .map { it.toChapterInfo() }
 | 
			
		||||
@@ -78,6 +80,7 @@ interface Source : tachiyomi.source.Source {
 | 
			
		||||
    /**
 | 
			
		||||
     * [1.x API] Get the list of pages a chapter has.
 | 
			
		||||
     */
 | 
			
		||||
    @Suppress("DEPRECATION")
 | 
			
		||||
    override suspend fun getPageList(chapter: ChapterInfo): List<tachiyomi.source.model.Page> {
 | 
			
		||||
        return fetchPageList(chapter.toSChapter()).awaitSingle()
 | 
			
		||||
            .map { it.toPageUrl() }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user