Skip to content

Commit

Permalink
Fix github actions failures
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesJJT committed Apr 6, 2024
1 parent c5181a0 commit 5e21fb5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/commands/hubsupport.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async function fetchManifest () {
return manifestCache
}

function replaceSpaceWithDash(string){
function replaceSpaceWithDash (string) {
return string.replace(/\s+/g, '-')
}

Expand All @@ -38,7 +38,7 @@ export default {
.setAutocomplete(true)
),
async execute (interaction) {
let value = interaction.options.getString('name')
const value = interaction.options.getString('name')

if (!value) {
return interaction.followUp('Support for hub plugins should be directed to the author of the plugin.\nYou can find the support link by searching for the plugin in the Plugin Hub panel and clicking the `?` button on the plugin, or by right-clicking the plugin in the plugin panel and clicking the `Support` menu option.')
Expand Down
2 changes: 1 addition & 1 deletion lib/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default {
'runelite/launcher',
'runelite/runelite.net',
'runelite/runelite-discord-bot',
'runelite/api.runelite.net',
'runelite/api.runelite.net'
],
// GitHub repository to fetch plugin hub contributors from
pluginHubRepo: 'runelite/plugin-hub'
Expand Down

0 comments on commit 5e21fb5

Please sign in to comment.