Changeset 1013


Ignore:
Timestamp:
Mar 23, 2015, 4:41:46 PM (10 years ago)
Author:
alloc
Message:

Fixes #85 (probably, at least from AEI side this should do it)

Location:
java
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • java/AEInstaller2-Updater/src/net/oni2/aeinstaller/updater/backend/Paths.java

    r852 r1013  
    2323                String jarPath = Paths.class.getProtectionDomain().getCodeSource()
    2424                                .getLocation().getPath();
     25                jarPath = jarPath.replaceAll("\\+", "%2B");
    2526                String decodedPath = null;
    2627                try {
  • java/installer2/src/net/oni2/aeinstaller/backend/Paths.java

    r857 r1013  
    5050                        String jarPath = Paths.class.getProtectionDomain().getCodeSource()
    5151                                        .getLocation().getPath();
     52                        jarPath = jarPath.replaceAll("\\+", "%2B");
    5253                        String decodedPath = null;
    5354                        try {
Note: See TracChangeset for help on using the changeset viewer.