Skip to content
This repository was archived by the owner on Aug 18, 2020. It is now read-only.

Commit cd2b82f

Browse files
authored
Merge pull request #82 from derNiklaas/patch-1
Fixed the error messages in TipeestreamEventInput
2 parents 130e2ab + 924662e commit cd2b82f

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@ What if you could **combine** the power of
1010
with your interactive chat in your livestream. What if you could easily react on events, e.g.
1111

1212
- Automatically **share** your new subscribers on twitter
13-
- Automatically **control** your studio's lighting colors trough chat messages
13+
- Automatically **control** your studio's lighting colors through chat messages
1414
- Automatically **post** an user's cheer on your minecraft server
1515
- Automatically **upload** a youtube video with stream highlights when your stream stops
1616

17-
and so much more. We know, there is [IFTTT](https://ifttt.com/). But sometimes, building blocks are to generic and services not optimized for your streaming environment.
17+
and so much more. We know, there is [IFTTT](https://ifttt.com/). But sometimes, building blocks are to generic and services aren't optimized for your streaming environment.
1818

1919
The alternative: Develop everything by yourself and waste hundreds of hours with API-integration. We already solved this problem for you. This is **Chat Overflow**.
2020

2121
## The ChatOverflow Project
2222

2323
**Chat Overflow** is a plugin framework, which offers ready-to-use platform integrations for all* major streaming- and social-media-sites.
2424

25-
**Chat Overflow** enables you to to level up your stream with by writing simple, platform-independent plugins in java or scala**.
25+
**Chat Overflow** enables you to to level up your stream by writing simple, platform-independent plugins in java or scala**.
2626

2727
It's getting even better: The **Chat Overflow** license allows you to sell your custom plugins, creating new services for other streamers.
2828

@@ -39,22 +39,22 @@ And it's so easy. Here is all the code to get started with a simple twitch chat
3939

4040
\* There are still missing platforms. This is a open-source project. You can [help](https://github.com/codeoverflow-org/chatoverflow/issues), too!
4141

42-
\** The API is written in java. So, every JVM-compatible language is possible. Java, Scala, Kotlin, ...
42+
\** The API is written in java. So, every JVM-compatible language is possible. Java, Scala, Kotlin, etc.
4343

4444
### Installation / Releases
4545
Head over to [releases](https://github.com/codeoverflow-org/chatoverflow/releases).
4646

4747
Just download the newest zip file, make sure that java is installed and launch the framework.
4848

49-
Note, that you'll have to develop your own plugins or search for plugins online (e.g. on our [Discord Server](https://discord.gg/p2HDsme)). **Chat Overflow** is only the framework.
49+
Note that you'll have to develop your own plugins or search for plugins online (e.g. on our [Discord Server](https://discord.gg/p2HDsme)). **Chat Overflow** is only the framework.
5050

5151
### Development
5252

5353
Start with the [Installation](https://github.com/codeoverflow-org/chatoverflow/wiki/Installation). Then learn more about the [CLI](https://github.com/codeoverflow-org/chatoverflow/wiki/Using-the-CLI).
5454

55-
Please see the wiki to learn how to code new [platform sources](https://github.com/codeoverflow-org/chatoverflow/wiki/Adding-a-new-platform-source) and new [plugins](https://github.com/codeoverflow-org/chatoverflow/wiki/Writing-a-plugin).
55+
Please consult the wiki to learn how to code new [platform sources](https://github.com/codeoverflow-org/chatoverflow/wiki/Adding-a-new-platform-source) and new [plugins](https://github.com/codeoverflow-org/chatoverflow/wiki/Writing-a-plugin).
5656

57-
***Pre-Alpha note***: Please note, that the development workflow and the documentation will be updated soon.
57+
***Pre-Alpha note***: Please note that the development workflow and the documentation will be updated soon.
5858

5959
### Discord
6060

src/main/scala/org/codeoverflow/chatoverflow/requirement/service/tipeeestream/impl/TipeestreamEventInputImpl.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ class TipeestreamEventInputImpl extends EventInputImpl[TipeeestreamEvent, Tipeee
5757
call(new TipeeestreamSubscriptionEvent(sub))
5858
} catch {
5959
case e: JSONException =>
60-
logger warn "Error while parsing donation json:"
60+
logger warn "Error while parsing subscription json:"
6161
logger warn s"${e.getClass.getName} - ${e.getMessage}"
6262
case e: IllegalArgumentException =>
63-
logger warn "Error while parsing donation json:"
63+
logger warn "Error while parsing subscription json:"
6464
logger warn s"${e.getClass.getName} - ${e.getMessage}"
6565
}
6666
}
@@ -75,10 +75,10 @@ class TipeestreamEventInputImpl extends EventInputImpl[TipeeestreamEvent, Tipeee
7575
call(new TipeeestramFollowEvent(follow))
7676
} catch {
7777
case e: JSONException =>
78-
logger warn "Error while parsing donation json:"
78+
logger warn "Error while parsing follow json:"
7979
logger warn s"${e.getClass.getName} - ${e.getMessage}"
8080
case e: IllegalArgumentException =>
81-
logger warn "Error while parsing donation json:"
81+
logger warn "Error while parsing follow json:"
8282
logger warn s"${e.getClass.getName} - ${e.getMessage}"
8383
}
8484
}

0 commit comments

Comments
 (0)