We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 112b47f commit 76c1540Copy full SHA for 76c1540
src/main/java/org/maxgamer/quickshop/util/paste/Paste.java
@@ -525,6 +525,14 @@ public String paste(@NotNull String content, PasteType type) {
525
} catch (Exception ignore) {
526
}
527
break;
528
+ case HELPCHAT:
529
+ try {
530
+ // Ubuntu Pastebin
531
+ paster = new HelpChatPastebinPaster();
532
+ return paster.pasteTheText(content);
533
+ } catch (Exception ignore) {
534
+ }
535
+ break;
536
default:
537
try {
538
// Lucko Pastebin
@@ -540,6 +548,7 @@ public String paste(@NotNull String content, PasteType type) {
540
548
public enum PasteType {
541
549
LUCKO,
542
550
PASTEBIN,
543
- UBUNTU
551
+ UBUNTU,
552
+ HELPCHAT
544
553
545
554
0 commit comments