فهرست منبع

Fix recursion in MetadataHelper.GetMetadata

ghorsington 5 سال پیش
والد
کامیت
e4a61ebad6
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      BepInEx/Contract/Attributes.cs

+ 1 - 1
BepInEx/Contract/Attributes.cs

@@ -151,7 +151,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.