Navigation Menu

Skip to content

Commit

Permalink
Fixing crash when no publisherId is set for self-hosted plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
Shchvova committed May 8, 2020
1 parent 5f5d1dc commit d16c9a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/resources/shell.lua
Expand Up @@ -364,7 +364,7 @@ function PluginSync:addPluginToQueueIfRequired( required_plugin )

local pluginName = required_plugin.pluginName
local publisherId = required_plugin.publisherId
local key = publisherId .. '/' .. pluginName
local key = tostring(publisherId) .. '/' .. pluginName
required_plugin.clientCatalogKey = key

-- Find reasons to queue the plugin for download.
Expand Down

0 comments on commit d16c9a8

Please sign in to comment.