Преглед на файлове

Fix recursion in MetadataHelper.GetMetadata

ghorsington преди 5 години
родител
ревизия
ec22e7fc59
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      BepInEx/Contract/Attributes.cs

+ 1 - 1
BepInEx/Contract/Attributes.cs

@@ -159,7 +159,7 @@ namespace BepInEx
 		/// </summary>
 		/// <param name="plugin">The plugin instance.</param>
 		/// <returns>The BepInPlugin metadata of the plugin instance.</returns>
-		public static BepInPlugin GetMetadata(object plugin) => GetMetadata(plugin.GetType());
+		public static BepInPlugin GetMetadata(object plugin) => GetMetadata(plugin as BaseUnityPlugin);
 
 		/// <summary>
 		/// Gets the specified attributes of a type, if they exist.