Skip to content

Commit

Permalink
Release Student 6.25.1 (253)
Browse files Browse the repository at this point in the history
  • Loading branch information
tamaskozmer authored Jul 10, 2023
2 parents d1722c2 + 5c5e4c7 commit fe1009c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions apps/student/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ android {
applicationId "com.instructure.candroid"
minSdkVersion Versions.MIN_SDK
targetSdkVersion Versions.TARGET_SDK
versionCode = 252
versionName = '6.25.0'
versionCode = 253
versionName = '6.25.1'

vectorDrawables.useSupportLibrary = true
multiDexEnabled = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,10 @@ class FileListFragment : ParentFragment(), Bookmarkable, FileUploadDialogParent
if (canvasContext.type == CanvasContext.Type.USER) {
url += "users_${canvasContext.id}/"
}
url += folder?.fullName?.split(" ", limit = 2)?.get(1)?.replaceFirst("files/", "") ?: ""
val fullNameParts = folder?.fullName?.split("/", limit = 2)
if ((fullNameParts?.size ?: 0) > 1) {
url += fullNameParts?.get(1) ?: ""
}
}

return url
Expand Down

0 comments on commit fe1009c

Please sign in to comment.