Skip to content

Commit

Permalink
Release Student 6.11.1 (227)
Browse files Browse the repository at this point in the history
* Version bump.

* [Student][MBL-15286] Assignment list crash
  • Loading branch information
tamaskozmer authored Mar 18, 2021
1 parent 4d8e05f commit d06e37f
Show file tree
Hide file tree
Showing 2 changed files with 3 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 @@ -57,8 +57,8 @@ android {
applicationId "com.instructure.candroid"
minSdkVersion Versions.MIN_SDK
targetSdkVersion Versions.TARGET_SDK
versionCode = 226
versionName = '6.11.0'
versionCode = 227
versionName = '6.11.1'

vectorDrawables.useSupportLibrary = true
multiDexEnabled = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class AssignmentListFragment : ParentFragment(), Bookmarkable {
override fun assignmentLoadingFinished() {
// If we only have one grading period we want to disable the spinner
val termCount = termAdapter?.count ?: 0
termSpinner.isEnabled = termCount > 1
termSpinner?.isEnabled = termCount > 1
termAdapter?.isLoading = false
termAdapter?.notifyDataSetChanged()
}
Expand Down

0 comments on commit d06e37f

Please sign in to comment.