Big refactoring of the Inbox #443

Apvienots
elegaanz Iekļāva 37 iesūtījumus no inbox-refactor zarā master 2019-04-17 17:31:47 +00:00
elegaanz pievienoja piebildi 2019-02-11 16:23:33 +00:00 (Pārcelta no github.com)

We now have a type that routes an activity through the registered handlers
until one of them matches.

Each Actor/Activity/Object combination is represented by an implementation of AsObject

These combinations are then registered on the Inbox type, which will try to deserialize
the incoming activity in the requested types.

Advantages:

  • nicer syntax: the final API is clearer and more idiomatic
  • more generic: only two traits (AsActor and AsObject) instead of one for each kind of activity
  • we always try to dereference unknown objects
  • it is easier to see which activities we handle and which one we don't

(sorry for the big diff once again 😕)

We now have a type that routes an activity through the registered handlers until one of them matches. Each Actor/Activity/Object combination is represented by an implementation of AsObject These combinations are then registered on the Inbox type, which will try to deserialize the incoming activity in the requested types. Advantages: - nicer syntax: the final API is clearer and more idiomatic - more generic: only two traits (`AsActor` and `AsObject`) instead of one for each kind of activity - we always try to dereference unknown objects - it is easier to see which activities we handle and which one we don't (sorry for the big diff once again :confused:)
codecov[bot] pievienoja piebildi 2019-02-11 17:37:25 +00:00 (Pārcelta no github.com)

Codecov Report

Merging #443 into master will increase coverage by 12.81%.
The diff coverage is 54.19%.

@@             Coverage Diff             @@
##           master     #443       +/-   ##
===========================================
+ Coverage   29.66%   42.48%   +12.81%     
===========================================
  Files          66       68        +2     
  Lines        7190     9314     +2124     
===========================================
+ Hits         2133     3957     +1824     
- Misses       5057     5357      +300
# [Codecov](https://codecov.io/gh/Plume-org/Plume/pull/443?src=pr&el=h1) Report > Merging [#443](https://codecov.io/gh/Plume-org/Plume/pull/443?src=pr&el=desc) into [master](https://codecov.io/gh/Plume-org/Plume/commit/7645fdbf35ed5a53521fe4af60203eae66354134?src=pr&el=desc) will **increase** coverage by `12.81%`. > The diff coverage is `54.19%`. ```diff @@ Coverage Diff @@ ## master #443 +/- ## =========================================== + Coverage 29.66% 42.48% +12.81% =========================================== Files 66 68 +2 Lines 7190 9314 +2124 =========================================== + Hits 2133 3957 +1824 - Misses 5057 5357 +300 ```
trinity-1686a izskatīja 2019-03-04 20:50:19 +00:00
trinity-1686a pievienoja piebildi
Īpašnieks

first batch of comments, I'll run some tests this evening or tomorrow

first batch of comments, I'll run some tests this evening or tomorrow
Īpašnieks

as it is more of a lib kind, I don't think it is a good idea. Returning an Option and .expect()ing on it would be better if possible

as it is more of a lib kind, I don't think it is a good idea. Returning an Option<String> and `.expect()`ing on it would be better if possible
Īpašnieks

is it calling itself recursively? a {"id":{"id":{"id":{"id":"something"}}} would be considered valid and having an id if so, and as it is cloning, with a big enough json, memory usage could grow quadratic to the size of the original payload

is it calling itself recursively? a `{"id":{"id":{"id":{"id":"something"}}}` would be considered valid and having an id if so, and as it is cloning, with a big enough json, memory usage could grow quadratic to the size of the original payload
@ -691,3 +680,4 @@
let conn = &*r.conn;
conn.test_transaction::<_, (), _>(|| {
fill_database(conn);
Īpašnieks

why was it 0 before and 1 now?

why was it 0 before and 1 now?
Īpašnieks

this could use a use statement 🤔

this could use a `use` statement :thinking:
@ -344,3 +378,4 @@ pub mod schema;
pub mod search;
pub mod tags;
pub mod users;
pub use plume_rocket::PlumeRocket;
Īpašnieks

does this mean no more warnings when building with pg backend?

does this mean no more warnings when building with pg backend?
Īpašnieks

?

?
elegaanz (Pārcelta no github.com) izskatīja 2019-03-04 20:54:32 +00:00
@ -691,3 +680,4 @@
let conn = &*r.conn;
conn.test_transaction::<_, (), _>(|| {
fill_database(conn);
elegaanz (Pārcelta no github.com) pievienoja piebildi 2019-03-04 20:54:32 +00:00

This function is never used I think, so we didn't noticed this bug before, but the first ID in databases is 1, never 0.

This function is never used I think, so we didn't noticed this bug before, but the first ID in databases is 1, never 0.
elegaanz (Pārcelta no github.com) izskatīja 2019-03-04 20:54:57 +00:00
@ -344,3 +378,4 @@ pub mod schema;
pub mod search;
pub mod tags;
pub mod users;
pub use plume_rocket::PlumeRocket;
elegaanz (Pārcelta no github.com) pievienoja piebildi 2019-03-04 20:54:57 +00:00

Normally, yes. 🙂

Normally, yes. :slightly_smiling_face:
elegaanz (Pārcelta no github.com) izskatīja 2019-03-04 20:56:50 +00:00
elegaanz (Pārcelta no github.com) pievienoja piebildi 2019-03-04 20:56:50 +00:00

I guess I temporally "disabled" it to see what errors I got or something like that, and I forgot to completely remove it. 😬 (I should probably review my own code before pushing it)

I guess I temporally "disabled" it to see what errors I got or something like that, and I forgot to completely remove it. :grimacing: (I should probably review my own code before pushing it)
trinity-1686a izskatīja 2019-03-13 10:31:32 +00:00
trinity-1686a pievienoja piebildi
Īpašnieks

I'm trying to test each activities. Sending/receiving delete seems to not be working. Sending like/reshare/follow works, but not receiving them. I haven't tested some Undo because I wasn't able to create the related activity in the first place

I'm trying to test each activities. Sending/receiving delete seems to not be working. Sending like/reshare/follow works, but not receiving them. I haven't tested some Undo because I wasn't able to create the related activity in the first place
@ -23,0 +9,4 @@
use rocket::{data::*, http::Status, response::status, Outcome::*, Request};
use rocket_contrib::json::*;
use serde::Deserialize;
use std::io::Read;
Īpašnieks

Deleting comment seems to return a Shared inbox error: Inbox(InvalidObject)

Deleting comment seems to return a `Shared inbox error: Inbox(InvalidObject)`
Īpašnieks

this doesn't seems to work

this doesn't seems to work
Īpašnieks

this doesn't seems to work

this doesn't seems to work
Īpašnieks

Deleting post seems to return a Shared inbox error: Inbox(InvalidObject)

Deleting post seems to return a `Shared inbox error: Inbox(InvalidObject)`
Īpašnieks

this doesn't seems to work

this doesn't seems to work
@ -106,3 +100,4 @@
&(&*conn, &rockets.intl.catalog, Some(user.clone())),
post.clone(),
blog,
&*form,
Īpašnieks

this line seems to be failing on my local instance. I haven't searched why yet

this line seems to be failing on my local instance. I haven't searched why yet
Īpašnieks

This seems to be failing too

This seems to be failing too
elegaanz (Pārcelta no github.com) izskatīja 2019-03-13 15:00:21 +00:00
@ -106,3 +100,4 @@
&(&*conn, &rockets.intl.catalog, Some(user.clone())),
post.clone(),
blog,
&*form,
elegaanz (Pārcelta no github.com) pievienoja piebildi 2019-03-13 15:00:20 +00:00

If it is exactly on this line, the only thing that can fail is the JSON serialization I think. But that doesn't make sense?? I'll see if I can reproduce.

If it is exactly on this line, the only thing that can fail is the JSON serialization I think. But that doesn't make sense?? I'll see if I can reproduce.
elegaanz pievienoja piebildi 2019-03-13 15:01:09 +00:00 (Pārcelta no github.com)

Thanks for your review @fdb-hiroshima. I'll try to reproduce your issues and fix them, and maybe add tests for it in plume-models too.

Thanks for your review @fdb-hiroshima. I'll try to reproduce your issues and fix them, and maybe add tests for it in plume-models too.
trinity-1686a izskatīja 2019-03-13 15:40:43 +00:00
@ -106,3 +100,4 @@
&(&*conn, &rockets.intl.catalog, Some(user.clone())),
post.clone(),
blog,
&*form,
Īpašnieks

I've added a debug print on the line above and the line under, I get one but not the other (I consider with::<...> and done to be on the same line, they are the same statement)
Edit: dbg!() says done() return Err(Inbox(InvalidObject))

I've added a debug print on the line above and the line under, I get one but not the other (I consider with::<...> and done to be on the same line, they are the same statement) Edit: dbg!() says done() return `Err(Inbox(InvalidObject))`
igalic (Pārcelta no github.com) izskatīja 2019-03-16 11:49:35 +00:00
igalic (Pārcelta no github.com) pievienoja piebildi 2019-03-16 11:28:16 +00:00

what does the where clause here mean? I've never seen + Debug @_@

what does the `where` clause here mean? I've never seen `+ Debug` @_@
igalic (Pārcelta no github.com) pievienoja piebildi 2019-03-16 11:30:45 +00:00

given that this match only has one match and else, other, maybe use if let here.

given that this `match` only has one match and else, `other`, maybe use `if let` here.
@ -49,0 +350,4 @@
/// # impl FromId<()> for Account {
/// # type Error = ();
/// # type Object = Person;
/// #
igalic (Pārcelta no github.com) pievienoja piebildi 2019-03-16 11:40:56 +00:00

is this missing an implementation, or is this it? 😜

is this missing an implementation, or is this it? 😜
@ -691,3 +680,4 @@
let conn = &*r.conn;
conn.test_transaction::<_, (), _>(|| {
fill_database(conn);
igalic (Pārcelta no github.com) pievienoja piebildi 2019-03-16 11:44:36 +00:00

Instance should probably have a method that returns the local instance_id

Instance should probably have a method that returns the local `instance_id`
trinity-1686a izskatīja 2019-03-16 12:21:02 +00:00
Īpašnieks

This mean that E must Implement From<InboxError<E>> and Debug (Debug allow ugly display via println!("{:?}", yourStruct)) for the functions in this impl block to be available

This mean that E must Implement `From<InboxError<E>>` and `Debug` (`Debug` allow ugly display via `println!("{:?}", yourStruct)`) for the functions in this impl block to be available
elegaanz (Pārcelta no github.com) izskatīja 2019-03-16 12:26:24 +00:00
@ -49,0 +350,4 @@
/// # impl FromId<()> for Account {
/// # type Error = ();
/// # type Object = Person;
/// #
elegaanz (Pārcelta no github.com) pievienoja piebildi 2019-03-16 12:26:24 +00:00

No it is the default implementation: unless the implementation specifies a shared inbox URL, it is None (but in reality I think all our implementations override this behavior)

No it is the default implementation: unless the implementation specifies a shared inbox URL, it is `None` (but in reality I think all our implementations override this behavior)
elegaanz pievienoja piebildi 2019-03-24 20:04:13 +00:00 (Pārcelta no github.com)

I fixed all the conflicts, and now instead of using Context we use PlumeRockets. I also deployed this branch to https://baptiste.gelez.xyz to make testing easier if needed.

I fixed all the conflicts, and now instead of using `Context` we use `PlumeRockets`. I also deployed this branch to https://baptiste.gelez.xyz to make testing easier if needed.
igalic (Pārcelta no github.com) izskatīja 2019-03-24 20:39:07 +00:00
igalic (Pārcelta no github.com) pievienoja piebildi

weak 👀

weak 👀
igalic (Pārcelta no github.com) pievienoja piebildi 2019-03-24 20:29:48 +00:00

is there such a thing as if not let? so we can move this whole block out by one indent, by returning early?

is there such a thing as `if not let`? so we can move this whole block out by one indent, by returning early?
igalic (Pārcelta no github.com) pievienoja piebildi 2019-03-24 20:33:09 +00:00

debug?

debug?
igalic (Pārcelta no github.com) pievienoja piebildi 2019-03-24 20:34:33 +00:00

if author != reiten Err

and remove the entire of indent, pls

if author != reiten Err and remove the entire of indent, pls
elegaanz (Pārcelta no github.com) izskatīja 2019-03-24 20:50:27 +00:00
elegaanz (Pārcelta no github.com) pievienoja piebildi 2019-03-24 20:50:26 +00:00

I don't think so…

I don't think so…
elegaanz (Pārcelta no github.com) izskatīja 2019-03-24 20:50:34 +00:00
elegaanz (Pārcelta no github.com) pievienoja piebildi 2019-03-24 20:50:34 +00:00

Oops.

Oops.
trinity-1686a izskatīja 2019-03-24 21:44:29 +00:00
Īpašnieks

There is match

There is match
elegaanz pievienoja piebildi 2019-03-25 18:23:40 +00:00 (Pārcelta no github.com)

So I did some testing, and here are the results:

Mastodon Pleroma Plume
Announce ✔️ ✔️ ✔️
Create Note ✔️ ✔️ ✔️
Create Article - - ✔️
Delete Note ✔️ ✔️ ✔️
Delete Article - - ✔️
Follow ✔️ ✔️ ✔️
Like ✔️ ✔️ ✔️
Undo Announce ✔️ Works if the Pleroma user is followed ✔️
Undo Follow ✔️ ✔️ ✔️
Undo Like ✔️ Works if the Pleroma user is followed ✔️
Update Article - - ✔️
  1. The CW is not here
  2. The notification is not deleted (see #499)
  3. There is no error, but after refreshing the Mastodon page, the follow is not accepted ( icon)

I will try to debug a bit more the errors I encountered.

So I did some testing, and here are the results: | | Mastodon | Pleroma | Plume | |:--------------:|:--------:|:---------------------------------------:|:-:| | Announce | ✔️ | ✔️ | ✔️ | | Create Note | ✔️ | ✔️ | ✔️ | | Create Article | - | - | ✔️ | | Delete Note | ✔️ | ✔️ | ✔️ | | Delete Article | - | - | ✔️ | | Follow | ✔️ | ✔️ | ✔️ | | Like | ✔️ | ✔️ | ✔️ | | Undo Announce | ✔️ | Works if the Pleroma user is followed | ✔️ | | Undo Follow | ✔️ | ✔️ | ✔️ | | Undo Like | ✔️ | Works if the Pleroma user is followed | ✔️ | | Update Article | - | - | ✔️ | 1. ~~The CW is not here~~ 2. ~~The notification is not deleted (see #499)~~ 3. ~~There is no error, but after refreshing the Mastodon page, the follow is not accepted (:hourglass: icon)~~ I will try to debug a bit more the errors I encountered.
igalic pievienoja piebildi 2019-03-25 19:21:50 +00:00 (Pārcelta no github.com)

it would be cool if we could add a service: mastodon and service: pleroma to Travis 😅

it would be cool if we could add a `service: mastodon` and `service: pleroma` to Travis 😅
elegaanz pievienoja piebildi 2019-03-25 19:32:17 +00:00 (Pārcelta no github.com)

I think if we were on Gitlab we could just pull their Docker images… I really miss Gitlab CI.

I think if we were on Gitlab we could just pull their Docker images… I really miss Gitlab CI.
Īpašnieks

can't we do it the ugly way with some bash script?

can't we do it the ugly way with some bash script?
elegaanz pievienoja piebildi 2019-03-25 19:38:54 +00:00 (Pārcelta no github.com)

We could, but it would take a lot of time to install all the dependencies, and the CI already takes so long to run.

We could, but it would take a lot of time to install all the dependencies, and the CI already takes so long to run.
igalic pievienoja piebildi 2019-03-25 22:17:55 +00:00 (Pārcelta no github.com)

i think we're starting to discuss integration tests, and it's not really fruitful in this PR.

i think we're starting to discuss integration tests, and it's not really fruitful in this PR.
igalic (Pārcelta no github.com) izskatīja 2019-03-31 11:56:22 +00:00
igalic (Pārcelta no github.com) pievienoja piebildi

👀

👀
@ -811,0 +727,4 @@
local: false,
// We don't really care about all the following for remote instances
long_description: SafeString::new(""),
short_description: SafeString::new(""),
igalic (Pārcelta no github.com) pievienoja piebildi 2019-03-31 11:54:08 +00:00

and space.

and space.
elegaanz pievienoja piebildi 2019-03-31 13:25:58 +00:00 (Pārcelta no github.com)

So, I fixed most issues (and updated the table above). I just need to understand why Pleroma is failing to undo like/boost, fix the space issue @igalic found (even if it is not directly related to this PR, it was here before), and do some optimizations (the current algorithm can dereference the same URL multiple times while handling the same activity for the moment). After that, I think this PR will be ready for real.

So, I fixed most issues (and updated the table above). I just need to understand why Pleroma is failing to undo like/boost, fix the space issue @igalic found (even if it is not directly related to this PR, it was here before), and do some optimizations (the current algorithm can dereference the same URL multiple times while handling the same activity for the moment). After that, I think this PR will be ready for real.
elegaanz pievienoja piebildi 2019-04-02 13:14:42 +00:00 (Pārcelta no github.com)

Update: I optimized the algorithm a little bit to avoid dereferencing the same object twice, fixed the space-in-username issue, and found why it was not possible to Undo Announce and Like from Pleroma. It was just not sending the activity to Plume because no one was following the Pleroma account on the Plume instance. It works fine if I follow my Pleroma account from Plume. I still created a bug report.

So I think this PR is ready for another review. 😄

Update: I optimized the algorithm a little bit to avoid dereferencing the same object twice, fixed the space-in-username issue, and found why it was not possible to Undo Announce and Like from Pleroma. It was just not sending the activity to Plume because no one was following the Pleroma account on the Plume instance. It works fine if I follow my Pleroma account from Plume. I still created a [bug report](https://git.pleroma.social/pleroma/pleroma/issues/779). So I think this PR is ready for another review. :smile:
igalic (Pārcelta no github.com) izskatīja 2019-04-02 13:35:37 +00:00
igalic (Pārcelta no github.com) pievienoja piebildi 2019-04-02 13:35:37 +00:00

fmt will not be happy with this :P

fmt will not be happy with this :P
elegaanz (Pārcelta no github.com) izskatīja 2019-04-02 13:37:08 +00:00
elegaanz (Pārcelta no github.com) pievienoja piebildi 2019-04-02 13:37:08 +00:00

Yes, I saw that. Fixed it. ^^

Yes, I saw that. Fixed it. ^^
trinity-1686a izskatīja 2019-04-06 21:37:15 +00:00
trinity-1686a pievienoja piebildi
Īpašnieks

👀

:eyes:
Īpašnieks

I don't think it can actually panic? Also the Otherwise we return its 'id' field, if it is a string is a bit unclear

I don't think it can actually panic? Also the `Otherwise we return its 'id' field, if it is a string` is a bit unclear
@ -40,0 +273,4 @@
_ => match object {
Some(o) => Self::from_activity(ctx, o).map_err(|e| (None, e)),
None => Self::from_activity(ctx, Self::deref(id)?).map_err(|e| (None, e)),
},
Īpašnieks

Isn't Sized implied by default?

Isn't Sized implied by default?
elegaanz (Pārcelta no github.com) izskatīja 2019-04-07 08:31:28 +00:00
elegaanz (Pārcelta no github.com) pievienoja piebildi 2019-04-07 08:31:28 +00:00

Yeah, I think I forgot to update the docs.

Yeah, I think I forgot to update the docs.
elegaanz (Pārcelta no github.com) izskatīja 2019-04-07 08:31:53 +00:00
@ -40,0 +273,4 @@
_ => match object {
Some(o) => Self::from_activity(ctx, o).map_err(|e| (None, e)),
None => Self::from_activity(ctx, Self::deref(id)?).map_err(|e| (None, e)),
},
elegaanz (Pārcelta no github.com) pievienoja piebildi 2019-04-07 08:31:52 +00:00

IIRC, the compiler threw errors when it wasn't here. 🤷‍♀️

IIRC, the compiler threw errors when it wasn't here. :woman_shrugging:
elegaanz (Pārcelta no github.com) izskatīja 2019-04-07 08:32:04 +00:00
@ -40,0 +273,4 @@
_ => match object {
Some(o) => Self::from_activity(ctx, o).map_err(|e| (None, e)),
None => Self::from_activity(ctx, Self::deref(id)?).map_err(|e| (None, e)),
},
elegaanz (Pārcelta no github.com) pievienoja piebildi 2019-04-07 08:32:04 +00:00

I'll try to remove it just to be sure.

I'll try to remove it just to be sure.
elegaanz (Pārcelta no github.com) izskatīja 2019-04-07 08:42:26 +00:00
@ -40,0 +273,4 @@
_ => match object {
Some(o) => Self::from_activity(ctx, o).map_err(|e| (None, e)),
None => Self::from_activity(ctx, Self::deref(id)?).map_err(|e| (None, e)),
},
elegaanz (Pārcelta no github.com) pievienoja piebildi 2019-04-07 08:42:26 +00:00

It was explicitly needed here, to be able to have Result<Self, _> here, but was not actually required on the two other types.

It was explicitly needed here, to be able to have `Result<Self, _>` here, but was not actually required on the two other types.
trinity-1686a izskatīja 2019-04-07 11:27:10 +00:00
@ -40,0 +273,4 @@
_ => match object {
Some(o) => Self::from_activity(ctx, o).map_err(|e| (None, e)),
None => Self::from_activity(ctx, Self::deref(id)?).map_err(|e| (None, e)),
},
Īpašnieks

ok, I did not know

ok, I did not know
trinity-1686a izskatīja 2019-04-07 17:53:03 +00:00
trinity-1686a pievienoja piebildi
Īpašnieks

👀

:eyes:
Īpašnieks

out of scope for this pr, but we should consider a find_or_create of some kind instead of find_by_domain.or_else(insert), so to not tie to much code from one part of the model to another

out of scope for this pr, but we should consider a `find_or_create` of some kind instead of `find_by_domain.or_else(insert)`, so to not tie to much code from one part of the model to another
Īpašnieks

is this wanted or leftover?

is this wanted or leftover?
Īpašnieks

wouldn't a and_then be more appropriate?

wouldn't a and_then be more appropriate?
Īpašnieks

I think we should try to chase clones everywhere, a lot of theme could be as_ref, which more efficient in term of both memory and computation

I think we should try to chase clones everywhere, a lot of theme could be as_ref, which more efficient in term of both memory and computation
Īpašnieks

wouldn't a and_then be more appropriate?

wouldn't a `and_then` be more appropriate?
@ -1079,0 +1234,4 @@
&article.object.object_props.id_string().unwrap()
);
}
}
Īpašnieks

is this related to #296 ?

is this related to #296 ?
Īpašnieks

aren't ~ files backup some editor make?

aren't ~ files backup some editor make?
elegaanz (Pārcelta no github.com) izskatīja 2019-04-07 18:04:53 +00:00
elegaanz (Pārcelta no github.com) pievienoja piebildi 2019-04-07 18:04:53 +00:00

leftover…

leftover…
elegaanz (Pārcelta no github.com) izskatīja 2019-04-07 18:06:12 +00:00
@ -1079,0 +1234,4 @@
&article.object.object_props.id_string().unwrap()
);
}
}
elegaanz (Pārcelta no github.com) pievienoja piebildi 2019-04-07 18:06:11 +00:00

More or less I think. Adding a url field to posts could solve both issues.

More or less I think. Adding a `url` field to posts could solve both issues.
elegaanz (Pārcelta no github.com) izskatīja 2019-04-07 18:06:39 +00:00
elegaanz (Pārcelta no github.com) pievienoja piebildi 2019-04-07 18:06:39 +00:00

These files are generated by the gettext command line tools, but they are normally gitignored. I'll remove them.

These files are generated by the gettext command line tools, but they are normally gitignored. I'll remove them.
Īpašnieks

Federation with old Plume

Sending activities

  • Unsubscribing from a user does not seem to delete the entry in database
  • Sending comment don't seem to propagate CW (maybe bug from old Plume) This is a bug from old Plume

Receiving

all right

Federation with itself

  • Unsubscribing from a user does not seem to delete the entry in database
  • Sending/Receiving Post Update does not seems to update post cover-picture

pleroma

Sending activities

  • boost (announce) post doesn't seems to work (unboost untested)
  • follow does not seems to work, but it might be my pleroma having problems (unfollow untested)

Receiving

  • again issues with follow, but again maybe my pleroma
### Federation with old Plume #### Sending activities - ~Unsubscribing from a user does not seem to delete the entry in database~ - ~Sending comment don't seem to propagate CW (maybe bug from old Plume)~ This is a bug from old Plume #### Receiving all right ### Federation with itself - ~Unsubscribing from a user does not seem to delete the entry in database~ - ~Sending/Receiving Post Update does not seems to update post cover-picture~ ### pleroma #### Sending activities - boost (announce) post doesn't seems to work (unboost untested) - follow does not seems to work, but it might be my pleroma having problems (unfollow untested) #### Receiving - again issues with follow, but again maybe my pleroma
trinity-1686a izskatīja 2019-04-07 19:39:08 +00:00
Īpašnieks

wow I missed how ugly this thing was

wow I missed how ugly this thing was
Īpašnieks

https://github.com/Plume-org/Plume/pull/443#issuecomment-476341573 by the way if we manage to get some certificate we can use in tests, this is now probably possible with circleci

https://github.com/Plume-org/Plume/pull/443#issuecomment-476341573 by the way if we manage to get some certificate we can use in tests, this is now probably possible with circleci
elegaanz pievienoja piebildi 2019-04-16 14:41:24 +00:00 (Pārcelta no github.com)

@fdb-hiroshima The issues with Pleroma are normally fixed now.

@fdb-hiroshima The issues with Pleroma are normally fixed now.
trinity-1686a apstiprināja šīs izmaiņas 2019-04-17 17:21:44 +00:00
trinity-1686a pievienoja piebildi
Īpašnieks

🚀

:rocket:
elegaanz pievienoja piebildi 2019-04-17 17:31:32 +00:00 (Pārcelta no github.com)

Yay, Finally! Thank you @igalic and @fdb-hiroshima for reviewing this big PR! 😊

Yay, Finally! Thank you @igalic and @fdb-hiroshima for reviewing this big PR! :blush:
Nepieciešams pieteikties, lai pievienotos šai sarunai.
Nav izskatītāju
Nav atskaites punkta
Nav projektu
Nav atbildīgo
2 dalībnieki
Paziņojumi
Izpildes datums
Izpildes datums nav derīgs vai tas ir ārpus datumu apgabala. Lūgums izmantot pierakstu "gggg-mm-dd".

Nav uzstādīts izpildes datums.

Atkarības

Nav atkarību.

Atsauce: Plume/Plume#443
Nav sniegts apraksts.