別タンスからブーストするときにブースト済フラグのかわりにファボ済フラグをチェックしていたバグを修正
This commit is contained in:
parent
09df39a631
commit
70cc87bf26
|
@ -9,8 +9,8 @@ android {
|
|||
applicationId "jp.juggler.subwaytooter"
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 25
|
||||
versionCode 46
|
||||
versionName "0.4.6"
|
||||
versionCode 47
|
||||
versionName "0.4.7"
|
||||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
|
||||
|
|
|
@ -1714,7 +1714,7 @@ public class ActMain extends AppCompatActivity
|
|||
}
|
||||
if( target_status == null ){
|
||||
return new TootApiResult( getString( R.string.status_id_conversion_failed ) );
|
||||
}else if( target_status.favourited ){
|
||||
}else if( target_status.reblogged ){
|
||||
return new TootApiResult( getString( R.string.already_boosted ) );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue