Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
AloqaIM-Android
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
AloqaIM-Android
Commits
f0e70ce9
Commit
f0e70ce9
authored
Aug 10, 2018
by
Filipe de Lima Brito
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix the maxFileSizeAllowed validation when uploading a file.
parent
960de03e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
6 deletions
+3
-6
ChatRoomPresenter.kt
...rocket/android/chatroom/presentation/ChatRoomPresenter.kt
+2
-5
build.gradle
build.gradle
+1
-1
No files found.
app/src/main/java/chat/rocket/android/chatroom/presentation/ChatRoomPresenter.kt
View file @
f0e70ce9
...
...
@@ -338,12 +338,9 @@ class ChatRoomPresenter @Inject constructor(
val
maxFileSizeAllowed
=
settings
.
uploadMaxFileSize
()
when
{
fileName
.
isEmpty
()
->
{
view
.
showInvalidFileMessage
()
}
fileSize
>
maxFileSizeAllowed
->
{
fileName
.
isEmpty
()
->
view
.
showInvalidFileMessage
()
fileSize
>
maxFileSizeAllowed
&&
maxFileSizeAllowed
!
in
-
1
..
0
->
view
.
showInvalidFileSize
(
fileSize
,
maxFileSizeAllowed
)
}
else
->
{
var
inputStream
:
InputStream
?
=
uriInteractor
.
getInputStream
(
uri
)
...
...
build.gradle
View file @
f0e70ce9
...
...
@@ -10,7 +10,7 @@ buildscript {
}
dependencies
{
classpath
'com.android.tools.build:gradle:3.3.0-alpha0
3
'
classpath
'com.android.tools.build:gradle:3.3.0-alpha0
4
'
classpath
"org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath
"org.jetbrains.dokka:dokka-gradle-plugin:${versions.dokka}"
classpath
'com.google.gms:google-services:4.0.2'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment