Skip to content

Commit

Permalink
Merge pull request #641 from anvithks/fix/null-folder-name
Browse files Browse the repository at this point in the history
Added fix for foldername prefix with null on fresh SODA installation.
  • Loading branch information
joseph-v authored Jan 7, 2022
2 parents 3c301ac + a25c2ec commit 4539800
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ export class BucketDetailComponent implements OnInit {
//Click on folder
folderLink(file){
let folderKey = file.Key;
if(this.folderId == ""){
if(this.folderId !== null && this.folderId !== ""){
this.folderId = folderKey;
}else{
this.folderId = this.folderId + folderKey;
Expand Down

0 comments on commit 4539800

Please sign in to comment.