Skip to content
Snippets Groups Projects
Commit a1e96ae9 authored by Eugen Rochko's avatar Eugen Rochko
Browse files

Add foreign key to prevent reblogs of non-existent (after race conditions) statuses from happening

Fix issue with detailed status view not supporting unreblogging/unfavouriting
parent 5ddad412
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,11 @@ const Status = React.createClass({
},
handleFavouriteClick (status) {
this.props.dispatch(favourite(status));
if (status.get('favourited')) {
this.props.dispatch(unfavourite(status));
} else {
this.props.dispatch(favourite(status));
}
},
handleReplyClick (status) {
......@@ -74,7 +78,11 @@ const Status = React.createClass({
},
handleReblogClick (status) {
this.props.dispatch(reblog(status));
if (status.get('reblogged')) {
this.props.dispatch(unreblog(status));
} else {
this.props.dispatch(reblog(status));
}
},
handleDeleteClick (status) {
......
class AddReblogOfIdForeignKeyToStatuses < ActiveRecord::Migration[5.0]
def change
add_foreign_key :statuses, :statuses, column: :reblog_of_id, on_delete: :cascade
end
end
......@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20170214110202) do
ActiveRecord::Schema.define(version: 20170217012631) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
......@@ -289,4 +289,5 @@ ActiveRecord::Schema.define(version: 20170214110202) do
t.index ["user_id"], name: "index_web_settings_on_user_id", unique: true, using: :btree
end
add_foreign_key "statuses", "statuses", column: "reblog_of_id", on_delete: :cascade
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment