Created
August 16, 2016 00:49
-
-
Save ThexXTURBOXx/a0973d1cd4ac04697967c95f0a547943 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM: | |
public Path getSlugFile(ManagedPlugin plugin) { | |
return this.managedPluginsFolder.resolve(plugin.getSlug()); | |
} | |
TO: | |
public Path getSlugFile(ManagedPlugin plugin) { | |
return this.managedPluginsFolder.resolve(plugin.getSlug().replace(":", "&")); | |
} | |
I know, the string is not the right one then, but it fixes the error, so everything is ok |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment