mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 07:34:24 +01:00
bump TT
This commit is contained in:
@@ -9,7 +9,7 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Product>TicketTailor</Product>
|
<Product>TicketTailor</Product>
|
||||||
<Description>Allows you to integrate with TicketTailor.com to sell tickets for Bitcoin</Description>
|
<Description>Allows you to integrate with TicketTailor.com to sell tickets for Bitcoin</Description>
|
||||||
<Version>2.0.2</Version>
|
<Version>2.0.3</Version>
|
||||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<!-- Plugin development properties -->
|
<!-- Plugin development properties -->
|
||||||
|
|||||||
@@ -361,11 +361,11 @@ public class TicketTailorService : EventHostedServiceBase, IWebhookProvider
|
|||||||
|
|
||||||
public class WebhookTicketTailorEvent : StoreWebhookEvent
|
public class WebhookTicketTailorEvent : StoreWebhookEvent
|
||||||
{
|
{
|
||||||
public WebhookTicketTailorEvent(string evtType, string storeId)
|
public WebhookTicketTailorEvent(string type, string storeId)
|
||||||
{
|
{
|
||||||
if (!evtType.StartsWith("tickettailor", StringComparison.InvariantCultureIgnoreCase))
|
if (!type.StartsWith("tickettailor", StringComparison.InvariantCultureIgnoreCase))
|
||||||
throw new ArgumentException("Invalid event type", nameof(evtType));
|
throw new ArgumentException("Invalid event type", nameof(type));
|
||||||
Type = evtType;
|
Type = type;
|
||||||
StoreId = storeId;
|
StoreId = storeId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user