mirror of
https://github.com/oliverbooth/VPLink
synced 2024-11-22 23:58:46 +00:00
Compare commits
2 Commits
8538432e8c
...
a9400acd7b
Author | SHA1 | Date | |
---|---|---|---|
a9400acd7b | |||
7f5be964c4 |
@ -63,6 +63,10 @@ internal sealed class AvatarService : BackgroundService, IAvatarService
|
||||
|
||||
private void OnVPAvatarLeft(VirtualParadiseAvatar avatar)
|
||||
{
|
||||
// ReSharper disable once ConditionIsAlwaysTrueOrFalseAccordingToNullableAPIContract
|
||||
if (avatar is null)
|
||||
return;
|
||||
|
||||
_logger.LogInformation("{Avatar} left ({User})", avatar, avatar.User);
|
||||
|
||||
IBotConfiguration configuration = _configurationService.BotConfiguration;
|
||||
|
@ -9,7 +9,7 @@
|
||||
<Authors>Oliver Booth</Authors>
|
||||
<RepositoryUrl>https://github.com/oliverbooth/VpBridge</RepositoryUrl>
|
||||
<RepositoryType>git</RepositoryType>
|
||||
<VersionPrefix>2.0.2</VersionPrefix>
|
||||
<VersionPrefix>2.0.3</VersionPrefix>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
|
||||
|
Loading…
Reference in New Issue
Block a user