mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Only allow updates from the same repo or main repo (#992)
This commit is contained in:
parent
26835467ea
commit
b6d08d5b8f
1 changed files with 1 additions and 0 deletions
|
|
@ -1234,6 +1234,7 @@ internal partial class PluginManager : IDisposable, IServiceType
|
||||||
|
|
||||||
var updates = this.AvailablePlugins
|
var updates = this.AvailablePlugins
|
||||||
.Where(remoteManifest => plugin.Manifest.InternalName == remoteManifest.InternalName)
|
.Where(remoteManifest => plugin.Manifest.InternalName == remoteManifest.InternalName)
|
||||||
|
.Where(remoteManifest => plugin.Manifest.InstalledFromUrl == remoteManifest.SourceRepo.PluginMasterUrl || !remoteManifest.SourceRepo.IsThirdParty)
|
||||||
.Select(remoteManifest =>
|
.Select(remoteManifest =>
|
||||||
{
|
{
|
||||||
var useTesting = UseTesting(remoteManifest);
|
var useTesting = UseTesting(remoteManifest);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue