fix(Inst.Import): don't set managed pack info from imported ZIPs
This prevents the Managed Pack page from showing up even though there's no way for it to work correctly. Signed-off-by: flow <flowlnlnln@gmail.com>
This commit is contained in:
		@@ -361,6 +361,8 @@ bool FlameCreationTask::createInstance()
 | 
			
		||||
        FS::deletePath(jarmodsPath);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    // Don't add managed info to packs without an ID (most likely imported from ZIP)
 | 
			
		||||
    if (!m_managed_id.isEmpty())
 | 
			
		||||
        instance.setManagedPack("flame", m_managed_id, m_pack.name, m_managed_version_id, m_pack.version);
 | 
			
		||||
    instance.setName(name());
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -217,6 +217,8 @@ bool ModrinthCreationTask::createInstance()
 | 
			
		||||
        instance.setIconKey("modrinth");
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    // Don't add managed info to packs without an ID (most likely imported from ZIP)
 | 
			
		||||
    if (!m_managed_id.isEmpty())
 | 
			
		||||
        instance.setManagedPack("modrinth", m_managed_id, m_managed_name, m_managed_version_id, version());
 | 
			
		||||
    instance.setName(name());
 | 
			
		||||
    instance.saveNow();
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user