Skip to content

Commit

Permalink
use proper env for remote creation
Browse files Browse the repository at this point in the history
  • Loading branch information
newhinton committed Mar 23, 2024
1 parent acfb150 commit ca9695c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/ca/pkay/rcloneexplorer/Rclone.java
Original file line number Diff line number Diff line change
Expand Up @@ -1511,7 +1511,7 @@ public ArrayList<Provider> getProviders(boolean silent) throws JSONException {
Process process;

try {
process = getRuntimeProcess(command);
process = getRuntimeProcess(command, getRcloneEnv());
BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream()));
String line;
while ((line = reader.readLine()) != null) {
Expand Down

0 comments on commit ca9695c

Please sign in to comment.