Skip to content

Commit

Permalink
Merge pull request #7 from matsumo0922/bump-up-version
Browse files Browse the repository at this point in the history
Bump up version to 0.0.8
  • Loading branch information
matsumo0922 authored Jan 17, 2025
2 parents d20baa6 + a552c08 commit 0e746d8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ internal class FanboxPostRepository(

suspend fun getHomePosts(cursor: FanboxCursor?) = withContext(ioDispatcher) {
fanboxPostApi.getHomePosts(
loadSize = LOAD_SIZE,
loadSize = cursor?.limit?.toString() ?: LOAD_SIZE,
maxPublishedDatetime = cursor?.maxPublishedDatetime,
maxId = cursor?.maxId,
).let {
Expand All @@ -34,7 +34,7 @@ internal class FanboxPostRepository(

suspend fun getSupportedPosts(cursor: FanboxCursor?) = withContext(ioDispatcher) {
fanboxPostApi.getSupportedPosts(
loadSize = LOAD_SIZE,
loadSize = cursor?.limit?.toString() ?: LOAD_SIZE,
maxPublishedDatetime = cursor?.maxPublishedDatetime,
maxId = cursor?.maxId,
).let {
Expand All @@ -52,7 +52,7 @@ internal class FanboxPostRepository(

fanboxPostApi.getCreatorPosts(
creatorId = creatorId.value,
loadSize = LOAD_SIZE,
loadSize = cursor?.limit?.toString() ?: LOAD_SIZE,
maxPublishedDatetime = cursors.first.maxPublishedDatetime,
maxId = cursors.first.maxId,
).let {
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
# Application
versionName = "0.0.7"
versionCode = "7"
versionName = "0.0.8"
versionCode = "8"

# SDK
minSdk = "26"
Expand Down

0 comments on commit 0e746d8

Please # to comment.